>> For your problem: I think we must see the full log with /logLevel=0xff, > > How can I set that level? I do this on client: > > cscript \\net\wpkg.js /debug /synchronize /nonotify /sendstatus > /logLevel=0xff > > and the output is same as before... > > You did send the console output which is created by using "/debug" switch. Don't use the "/debug" switch if you want to log to logfile. For the logfile, you can set parameters in config.xml or on command line: /logfilePattern:wpkg-[HOSTNAME].log or <param name='logfilePattern' value='wpkg-[HOSTNAME].log' /> <param name='log_file_path' value='%TEMP%' /> (no command line switch here) If you have a look at config.xml, you see, that with default settings, the log file is written with loglevel 0xff to the local %TEMP% folder, normaly in the users profile -> local settings -> temp. BTW: If you test wpkg.js on command line and if you use %SOFTWARE% variable in your packages, don't forget to "set SOFTWARE=..." before running "cscript wpkg.js ..." - this is a common mistake I always make when testing something manually ... Good luck, Falko |