According to the docs you can use the following "package" to view what has been installed on a workstation... <package id="wpkg-xml" name="wpkg.xml files from workstations" revision="1" priority="0" execute="always"> <install timeout="15" cmd='cmd /C copy %SYSTEMROOT%\system32\wpkg.xml \\server\wpkg-xml\%COMPUTERNAME%.xml /Y' /> </package> ...but won't this always be behind by one run of wpkg? By looking at the log the last thing that wpkg does is write wpkg.xml. So this method will always copy the last wpkg.xml and not the current. Am I correct? |