> > Here is an example (I have put the whole thing in just incase I have something wrong): > <?xml version="1.0" encoding="UTF-8"?> > > <profiles> > <profile id="systems64"> > <depends profile-id="base64" /> > <depends profile-id="sql64" /> > <depends profile-id="remote64" /> > <depends profile-id="google64" /> > <depends profile-id="virtual64" /> > > <package package-id="visio2010" /> > </profile> > </profiles> > Jeff, First make sure to always reply to the list, only in certain circumstances replying to the individual is needed. Second, mailing lists are expecting to receive mails in pure text format, HTML messages don't play well. Can you run the following command script on the machine exhibiting the problem? You can attach the created log file to a reply and we will be able to help you. I have this placed at the same level as the root folder of WPKG, so you will have to adapt it to meet your installation. rem ---code start (watch for line wraps) @rem @echo off pushd %~dp0\.. set SOFTWARE=%CD% pushd %~dp0 set WPKG_ROOT=%CD%\WPKG Server echo. echo Executing WPKG in Debug Mode ... cscript "%WPKG_ROOT%\wpkg.js" /nonotify /debug /dryrun /synchronize /sendStatus /logLevel:0xFF >"%TMP%\wpkg_check.txt" echo. echo Displaying Log File ... if exist "%ProgramFiles%\Notepad++\notepad++.exe" ( "%ProgramFiles%\Notepad++\notepad++.exe" "%TMP%\wpkg_check.txt" ) else ( if exist "%ProgramFiles(x86)%\Notepad++\notepad++.exe" ( "%ProgramFiles(x86)%\Notepad++\notepad++.exe" "%TMP%\wpkg_check.txt" ) else ( notepad "%TMP%\wpkg_check.txt" ) ) popd popd echo. pause rem ---code end --- Stefan |