I am using wpkg 1.3.0 and flash player, installed by wpkg shows as installed in control panels->add/remove programs, however opening a Firefox browser doesn't allow flash content to be played. The IE plug always seems to install correctly. If I manually install the package everything works, so I don't think it is the computer or file itself. Here is the recipe used and log from a machine that isn't doing it: RECIPE: <?xml version="1.0" encoding="UTF-8"?> <packages xmlns:xsi="http://www.wpkg.org/packages" xsi:noNamespaceSchemaLocation="../xsd/packages.xsd" > <package id="AdobeFlashPlayer" name="Adobe Flash Player" revision="%PKG_VERSION%" reboot="false" priority="10"> <variable name="PKG_VERSION" value="11.1.102.55" /> <!--variable name="PKG_SOURCE" value="%SOFTWARE%\pub\apps\flash\%PKG_VERSION%" /--> <variable name="PKG_SOURCE" value="%SOFTWARE%\pub\apps\flash\" /> <variable name="PKG_DESTINATION" value="%SystemRoot%\System32\Macromed\Flash"/> <variable name="PKG_DESTINATION" value="%SystemRoot%\SysWOW64\Macromed\Flash" architecture="x64"/> <variable name="PKG_DESTINATION_X64" value="%SystemRoot%\System32\Macromed\Flash"/> <variable name="PKG_FILE_ACTIVEX" value="Flash11e.ocx" /> <variable name="PKG_FILE_PLUGIN" value="NPSWF32.dll" /> <variable name="PKG_FILE_ACTIVEX_X64" value="Flash64_11_1_102.ocx" /> <variable name="PKG_FILE_PLUGIN_X64" value="NPSWF64_11_1_102.dll" /> <check type="uninstall" condition="versiongreaterorequal" path="Adobe Flash Player .+ ActiveX.*" value="%PKG_VERSION%" /> <check type="uninstall" condition="versiongreaterorequal" path="Adobe Flash Player .+ Plugin.*" value="%PKG_VERSION%" /> <!--check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\%PKG_FILE_ACTIVEX%" value="%PKG_VERSION%" /--> <check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\%PKG_FILE_PLUGIN%" value="%PKG_VERSION%" /> <!--check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION_X64%\%PKG_FILE_ACTIVEX_X64%" value="%PKG_VERSION%" architecture="x64" /--> <check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION_X64%\%PKG_FILE_PLUGIN_X64%" value="%PKG_VERSION%" architecture="x64" /> <install include="remove" /> <install architecture="x86" cmd='"%PKG_SOURCE%\install_flash_player_11_active_x_32bit.exe" -install ' /> <install architecture="x86" cmd='"%PKG_SOURCE%\install_flash_player_11_plugin_32bit.exe" -install ' /> <install architecture="x64" cmd='"%PKG_SOURCE%\install_flash_player_11_active_x_64bit.exe" -install ' /> <install architecture="x64" cmd='"%PKG_SOURCE%\install_flash_player_11_plugin_64bit.exe" -install ' /> <!--install architecture="x86" cmd='"%PKG_SOURCE%\install_flash_player_11_active_x_32bit.msi" /quiet /norestart ' /> <install architecture="x86" cmd='"%PKG_SOURCE%\install_flash_player_11_plugin_32bit.msi" /quiet /norestart ' /> <install architecture="x64" cmd='"%PKG_SOURCE%\install_flash_player_11_active_x_64bit.msi" /quiet /norestart ' /> <install architecture="x64" cmd='"%PKG_SOURCE%\install_flash_player_11_plugin_64bit.msi" /quiet /norestart ' /--> <upgrade include="install" /> <remove cmd="taskkill /F /IM Firefox.exe"> <exit code="0" /> <exit code="128" /> <exit code="1" /> </remove> <remove cmd="taskkill /F /IM iexplore.exe"> <exit code="0" /> <exit code="128" /> <exit code="1" /> </remove> <remove architecture="x86" cmd='"%PKG_SOURCE%\uninstall_flash_player_32bit.exe" -uninstall' > <exit code="any" /> </remove> <remove architecture="x64" cmd='"%PKG_SOURCE%\uninstall_flash_player_64bit.exe" -uninstall' > <exit code="any" /> </remove> </package> </packages> LOG: 2012-02-03 13:38:10, DEBUG : WPKG 1.3.0 starting... 2012-02-03 13:38:10, DEBUG : Reboot-Cmd is standard. 2012-02-03 13:38:10, DEBUG : Base directory is '\\install\tech\wpkg'. 2012-02-03 13:38:10, DEBUG : Log level is 255 2012-02-03 13:38:10, DEBUG : Trying to read XML files from directory: \\install\tech\wpkg\profiles 2012-02-03 13:38:10, DEBUG : Reading XML file: //install/tech/wpkg/profiles/cs.xml 2012-02-03 13:38:10, DEBUG : Reading XML file: //install/tech/wpkg/profiles.xml 2012-02-03 13:38:10, DEBUG : Trying to read XML files from directory: \\install\tech\wpkg\hosts 2012-02-03 13:38:10, DEBUG : Reading XML file: //install/tech/wpkg/hosts/cs.xml 2012-02-03 13:38:10, DEBUG : Reading XML file: //install/tech/wpkg/hosts.xml 2012-02-03 13:38:10, DEBUG : Trying to read XML files from directory: \\install\tech\wpkg\packages 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/7zip.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/adobereaderX.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/firefox.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/flashplayer.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/java6.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/java7.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/libreoffice.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/pdfcreator.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/quicktime.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/shockwave.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages/thunderbird.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: //install/tech/wpkg/packages.xml 2012-02-03 13:38:11, DEBUG : Reading settings file: C:\Windows\System32\wpkg.xml 2012-02-03 13:38:11, DEBUG : Reading XML file: C:/Windows/System32/wpkg.xml 2012-02-03 13:38:18, DEBUG : Host operating system: microsoft windows 7 professional, , sp1, 6.1.7601 2012-02-03 13:38:18, DEBUG : Found network service: {D0C05861-3CA5-4303-BD73-1464B3A36BD1} 2012-02-03 13:38:18, DEBUG : Reading DHCP address. 2012-02-03 13:38:18, DEBUG : Found DHCP address: 10.2.1.234 2012-02-03 13:38:18, DEBUG : Domain Name: cs 2012-02-03 13:38:26, DEBUG : Found computer group: Domain Computers 2012-02-03 13:38:26, DEBUG : Found user locale: 409 2012-02-03 13:38:26, DEBUG : Found system locale: 409 2012-02-03 13:38:26, DEBUG : Host properties: hostname='csw-006'|architecture='x64'|os='microsoft windows 7 professional, , sp1, 6.1.7601'|ipaddresses='10.2.1.234'|domain name='cs'|groups='Domain Computers'|lcid='409'|lcidOS='409' 2012-02-03 13:38:26, DEBUG : Profiles applying to the current host:|csw-default| 2012-02-03 13:38:26, DEBUG : Getting profiles which apply to this node. 2012-02-03 13:38:26, DEBUG : Initializing new log file: 'C:\Windows\TEMP\wpkg-csw-006.log' in replace mode. 2012-02-03 13:38:26, DEBUG : Applying profile: csw-default 2012-02-03 13:38:26, DEBUG : Adding profile dependencies of profile 'csw-default': 'default' 2012-02-03 13:38:26, DEBUG : Adding profile dependencies of profile 'default': 'default-base' 2012-02-03 13:38:26, DEBUG : Adding profile dependencies of profile 'default-base': 'firefox' 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Reading variables from host: name='csw.+',profile-id='csw-default' 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 13:38:26, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 13:38:26, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 13:38:26, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Adding package with ID 'libreoffice' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'LibreOffice' (libreoffice) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'adobereader' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Adobe Reader' (adobereader) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'java6' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Java Runtime Environment 6' (java6) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'java6-x86' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Java Runtime Environment 6' (java6-x86) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'java7' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Java Runtime Environment 7' (java7) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'java7-x86' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Java Runtime Environment 7' (java7-x86) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID '7zip' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node '7-Zip' (7zip) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'pdfcreator' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'PDFCreator' (pdfcreator) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'firefox' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Mozilla Firefox' (firefox) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'AdobeFlashPlayer' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Adobe Flash Player' (AdobeFlashPlayer) in package database. 2012-02-03 13:38:26, DEBUG : Adding package with ID 'shockwave11_mozilla' to profile packages. 2012-02-03 13:38:26, DEBUG : Found package node 'Adobe Shockwave Player 11' (shockwave11_mozilla) in package database. 2012-02-03 13:38:26, DEBUG : Synchronizing. Number of packages referenced by profile: 11. 2012-02-03 13:38:26, DEBUG : Evaluating packages to be removed. 2012-02-03 13:38:26, DEBUG : Found installed package 'Adobe Flash Player' (AdobeFlashPlayer). 2012-02-03 13:38:26, DEBUG : Package 'Adobe Flash Player' (AdobeFlashPlayer) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Adobe Reader' (adobereader). 2012-02-03 13:38:26, DEBUG : Package 'Adobe Reader' (adobereader) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Adobe Shockwave Player 11' (shockwave11_mozilla). 2012-02-03 13:38:26, DEBUG : Package 'Adobe Shockwave Player 11' (shockwave11_mozilla) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Java Runtime Environment 6' (java6-x86). 2012-02-03 13:38:26, DEBUG : Package 'Java Runtime Environment 6' (java6-x86) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Java Runtime Environment 6 Update 24' (java6). 2012-02-03 13:38:26, DEBUG : Package 'Java Runtime Environment 6 Update 24' (java6) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Java Runtime Environment 7' (java7). 2012-02-03 13:38:26, DEBUG : Package 'Java Runtime Environment 7' (java7) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Java Runtime Environment 7' (java7-x86). 2012-02-03 13:38:26, DEBUG : Package 'Java Runtime Environment 7' (java7-x86) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'LibreOffice' (libreoffice). 2012-02-03 13:38:26, DEBUG : Package 'LibreOffice' (libreoffice) found in profile packages. 2012-02-03 13:38:26, DEBUG : Found installed package 'Mozilla Firefox' (firefox). 2012-02-03 13:38:26, DEBUG : Package 'Mozilla Firefox' (firefox) found in profile packages. 2012-02-03 13:38:26, DEBUG : Number of packages to remove: 0 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:26, DEBUG : Getting profiles which apply to this node. 2012-02-03 13:38:26, DEBUG : Reading variables from profile firefox 2012-02-03 13:38:26, DEBUG : Reading variables from profile default-base 2012-02-03 13:38:26, DEBUG : Reading variables from profile default 2012-02-03 13:38:26, DEBUG : Reading variables from profile csw-default 2012-02-03 13:38:26, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:26, DEBUG : Got variable 'version' of value '30' 2012-02-03 13:38:26, DEBUG : Setting variable: 'version=30'. 2012-02-03 13:38:26, DEBUG : Going to install package 'Java Runtime Environment 6' (java6), Revision 30, (execute flag is '', notify flag is 'true'). 2012-02-03 13:38:26, DEBUG : Package 'Java Runtime Environment 6' (java6): Not yet processed during this session. 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:26, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:26, DEBUG : Got variable 'version' of value '30' 2012-02-03 13:38:26, DEBUG : Setting variable: 'version=30'. 2012-02-03 13:38:26, DEBUG : Comparing version: '30' <=> '24'. 2012-02-03 13:38:26, DEBUG : Comparing version fragments: '30' <=> '24' 2012-02-03 13:38:26, INFO : Package 'Java Runtime Environment 6' (java6): Already installed but version mismatch.|Installed revision: '24'|Available revision: '30'.|Preparing upgrade. 2012-02-03 13:38:26, DEBUG : Package 'Java Runtime Environment 6' (java6): Prepared for upgrade. 2012-02-03 13:38:26, DEBUG : Installation of references (dependencies) for 'Java Runtime Environment 6' (java6) successfully finished. 2012-02-03 13:38:26, INFO : Installing 'Java Runtime Environment 6' (java6)... 2012-02-03 13:38:26, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:26, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:26, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:26, DEBUG : Got variable 'version' of value '30' 2012-02-03 13:38:26, DEBUG : Setting variable: 'version=30'. 2012-02-03 13:38:26, DEBUG : Install type: upgrade 2012-02-03 13:38:26, DEBUG : Fetched 5 upgrade command(s). 2012-02-03 13:38:26, DEBUG : Found language definition node for language ID 409 2012-02-03 13:38:26, INFO : User notification suppressed. Message: Automatic software deployment is currently updating your system. Please save all your documents as the the system might reboot without further notice. Thank you. 2012-02-03 13:38:26, DEBUG : Executing command: 'taskkill /f /im jqs.exe /im iexplore.exe /im firefox.exe'. 2012-02-03 13:38:26, INFO : Command 'taskkill /f /im jqs.exe /im iexplore.exe /im firefox.exe' returned exit code [128]. This exit code indicates success. 2012-02-03 13:38:26, INFO : Command in installation of Java Runtime Environment 6 returned exit code [128]. This exit code indicates success. 2012-02-03 13:38:26, DEBUG : Executing command: '%SOFTWARE%\pub\apps\java\jre-6u%version%-windows-x64.exe /s REBOOT=Suppress' ('\\install\tech\pub\apps\java\jre-6u30-windows-x64.exe /s REBOOT=Suppress'). 2012-02-03 13:38:47, ERROR : Could not process (upgrade) package 'Java Runtime Environment 6' (java6):|Exit code returned non-successful value (1603) on command '%SOFTWARE%\pub\apps\java\jre-6u%version%-windows-x64.exe /s REBOOT=Suppress'. 2012-02-03 13:38:47, DEBUG : Cleaning up temporary downloaded files 2012-02-03 13:38:47, DEBUG : Restoring previous environment. 2012-02-03 13:38:47, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:47, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:47, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:47, DEBUG : Got variable 'version' of value '30' 2012-02-03 13:38:47, DEBUG : Setting variable: 'version=30'. 2012-02-03 13:38:47, DEBUG : Going to install package 'Java Runtime Environment 6' (java6-x86), Revision 30, (execute flag is '', notify flag is 'true'). 2012-02-03 13:38:47, DEBUG : Package 'Java Runtime Environment 6' (java6-x86): Not yet processed during this session. 2012-02-03 13:38:47, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:47, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:47, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:47, DEBUG : Got variable 'version' of value '30' 2012-02-03 13:38:47, DEBUG : Setting variable: 'version=30'. 2012-02-03 13:38:47, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:47, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:47, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:47, DEBUG : Got variable 'version' of value '26' 2012-02-03 13:38:47, DEBUG : Setting variable: 'version=26'. 2012-02-03 13:38:47, DEBUG : Comparing version: '30' <=> '26'. 2012-02-03 13:38:47, DEBUG : Comparing version fragments: '30' <=> '26' 2012-02-03 13:38:47, INFO : Package 'Java Runtime Environment 6' (java6-x86): Already installed but version mismatch.|Installed revision: '26'|Available revision: '30'.|Preparing upgrade. 2012-02-03 13:38:47, DEBUG : Package 'Java Runtime Environment 6' (java6-x86): Prepared for upgrade. 2012-02-03 13:38:47, DEBUG : Installation of references (dependencies) for 'Java Runtime Environment 6' (java6-x86) successfully finished. 2012-02-03 13:38:47, INFO : Installing 'Java Runtime Environment 6' (java6-x86)... 2012-02-03 13:38:47, DEBUG : Reading variables from hosts[s] 2012-02-03 13:38:47, DEBUG : Reading variables from profile[s] 2012-02-03 13:38:47, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 13:38:47, DEBUG : Got variable 'version' of value '30' 2012-02-03 13:38:47, DEBUG : Setting variable: 'version=30'. 2012-02-03 13:38:47, DEBUG : Install type: upgrade 2012-02-03 13:38:47, DEBUG : Fetched 5 upgrade command(s). 2012-02-03 13:38:47, DEBUG : Executing command: 'taskkill /f /im jqs.exe /im iexplore.exe /im firefox.exe'. 2012-02-03 13:38:47, INFO : Command 'taskkill /f /im jqs.exe /im iexplore.exe /im firefox.exe' returned exit code [128]. This exit code indicates success. 2012-02-03 13:38:47, INFO : Command in installation of Java Runtime Environment 6 returned exit code [128]. This exit code indicates success. 2012-02-03 13:38:47, DEBUG : Executing command: '%SOFTWARE%\pub\apps\java\jre-6u%version%-windows-i586.exe /s REBOOT=Suppress' ('\\install\tech\pub\apps\java\jre-6u30-windows-i586.exe /s REBOOT=Suppress'). 2012-02-03 14:38:47, ERROR : Command '%SOFTWARE%\pub\apps\java\jre-6u%version%-windows-i586.exe /s REBOOT=Suppress' ('\\install\tech\pub\apps\java\jre-6u30-windows-i586.exe /s REBOOT=Suppress') was unsuccessful.|Timeout reached while executing. 2012-02-03 14:38:49, ERROR : Could not process (upgrade) package 'Java Runtime Environment 6' (java6-x86):|Exit code returned non-successful value (-1) on command '%SOFTWARE%\pub\apps\java\jre-6u%version%-windows-i586.exe /s REBOOT=Suppress'. 2012-02-03 14:38:49, DEBUG : Cleaning up temporary downloaded files 2012-02-03 14:38:49, DEBUG : Restoring previous environment. 2012-02-03 14:38:49, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:49, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:49, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:49, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:49, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:49, DEBUG : Going to install package 'Java Runtime Environment 7' (java7), Revision 2, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:49, DEBUG : Package 'Java Runtime Environment 7' (java7): Not yet processed during this session. 2012-02-03 14:38:49, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:49, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:49, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:49, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:49, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:49, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:49, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:49, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:49, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:49, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:49, DEBUG : Comparing version: '2' <=> '2'. 2012-02-03 14:38:49, DEBUG : Checking existence of package: Java Runtime Environment 7 2012-02-03 14:38:49, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:49, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:49, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:49, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:49, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:50, DEBUG : Uninstall entry 'Java(TM) 7 Update 2' matches string 'Java(TM) 7 Update 2'. 2012-02-03 14:38:50, DEBUG : Uninstall entry for Java(TM) 7 Update %version% was found: test successful. 2012-02-03 14:38:50, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:50, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:50, DEBUG : Result of logical 'OR' check is true. 2012-02-03 14:38:50, DEBUG : Package 'Java Runtime Environment 7' (java7): Already installed. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:50, DEBUG : Going to install package 'Java Runtime Environment 7' (java7-x86), Revision 2, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:50, DEBUG : Package 'Java Runtime Environment 7' (java7-x86): Not yet processed during this session. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:50, DEBUG : Comparing version: '2' <=> '2'. 2012-02-03 14:38:50, DEBUG : Checking existence of package: Java Runtime Environment 7 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:50, DEBUG : Uninstall entry 'Java(TM) 7 Update 2' matches string 'Java(TM) 7 Update 2'. 2012-02-03 14:38:50, DEBUG : Uninstall entry for Java(TM) 7 Update %version% was found: test successful. 2012-02-03 14:38:50, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='exists', path='Java(TM) 7 Update %version%' 2012-02-03 14:38:50, DEBUG : Found 1 previously executed checks. 2012-02-03 14:38:50, DEBUG : Replacing check results of previous evaluation 2012-02-03 14:38:50, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:50, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:50, DEBUG : Result of logical 'OR' check is true. 2012-02-03 14:38:50, DEBUG : Package 'Java Runtime Environment 7' (java7-x86): Already installed. 2012-02-03 14:38:50, DEBUG : Going to install package 'LibreOffice' (libreoffice), Revision 3.4.5, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:50, DEBUG : Package 'LibreOffice' (libreoffice): Not yet processed during this session. 2012-02-03 14:38:50, DEBUG : Comparing version: '3.4.5' <=> '3.4.5'. 2012-02-03 14:38:50, DEBUG : Checking existence of package: LibreOffice 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'LibreOffice'. 2012-02-03 14:38:50, DEBUG : Got variable 'PKG_VERSION' of value '3.4.5' 2012-02-03 14:38:50, DEBUG : Got variable 'REMOVEPROGS' of value 'gm_p_Base,gm_p_Base_Bin,gm_p_Math,gm_p_Math_Bin' 2012-02-03 14:38:50, DEBUG : Got variable 'REMOVEOPTIONS' of value 'gm_o_Testtool,gm_o_Xsltfiltersamples,gm_o_Pyuno,gm_o_jf_Palm,gm_o_jf_Pocketpc,gm_o_Quickstart,gm_o_Extensions_PRESENTER_SCREEN,gm_o_Extensions_REPORTDESIGN,gm_o_Extensions_MEDIAWIKI' 2012-02-03 14:38:50, DEBUG : Got variable 'CNAME' of value 'Our Company' 2012-02-03 14:38:50, DEBUG : Setting variable: 'PKG_VERSION=3.4.5'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'REMOVEPROGS=gm_p_Base,gm_p_Base_Bin,gm_p_Math,gm_p_Math_Bin'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'REMOVEOPTIONS=gm_o_Testtool,gm_o_Xsltfiltersamples,gm_o_Pyuno,gm_o_jf_Palm,gm_o_jf_Pocketpc,gm_o_Quickstart,gm_o_Extensions_PRESENTER_SCREEN,gm_o_Extensions_REPORTDESIGN,gm_o_Extensions_MEDIAWIKI'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'CNAME=Our Company'. 2012-02-03 14:38:50, DEBUG : Uninstall entry 'LibreOffice 3.4' matches expression 'LibreOffice .+'. 2012-02-03 14:38:50, DEBUG : Found version of 'LibreOffice .+' at HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{03CEFC42-378E-4467-9909-DCBAFD38CA9F}: 3.4.502|Comparing to expected version: %PKG_VERSION%. 2012-02-03 14:38:50, DEBUG : Comparing version: '3.4.502' <=> '3.4.5'. 2012-02-03 14:38:50, DEBUG : Comparing version fragments: '3' <=> '3' 2012-02-03 14:38:50, DEBUG : Comparing version fragments: '4' <=> '4' 2012-02-03 14:38:50, DEBUG : Comparing version fragments: '502' <=> '5' 2012-02-03 14:38:50, DEBUG : Comparing uninstall version '3.4.502' to expected version '3.4.5' using condition 'versiongreaterorequal' returned 1. 2012-02-03 14:38:50, DEBUG : Uninstall version check for package 'LibreOffice .+' returned true for operation type versiongreaterorequal. 2012-02-03 14:38:50, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='versiongreaterorequal', path='LibreOffice .+', value='%PKG_VERSION%' 2012-02-03 14:38:50, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:38:50, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:50, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:50, DEBUG : Package 'LibreOffice' (libreoffice): Already installed. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:38:50, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:38:50, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:38:50, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:38:50, DEBUG : Going to install package 'Adobe Reader' (adobereader), Revision 10.1.2, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:50, DEBUG : Package 'Adobe Reader' (adobereader): Not yet processed during this session. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:38:50, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:38:50, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:38:50, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:38:50, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:38:50, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:38:50, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:38:50, DEBUG : Comparing version: '10.1.2' <=> '10.1.2'. 2012-02-03 14:38:50, DEBUG : Checking existence of package: Adobe Reader 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:38:50, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:38:50, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:38:50, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:38:50, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:38:50, DEBUG : Uninstall entry 'Adobe Reader X (10.1.2)' matches string 'Adobe Reader X (10.1.2)'. 2012-02-03 14:38:50, DEBUG : Uninstall entry for Adobe Reader X (%version%) was found: test successful. 2012-02-03 14:38:50, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='exists', path='Adobe Reader X (%version%)' 2012-02-03 14:38:50, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:38:50, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:50, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:50, DEBUG : Package 'Adobe Reader' (adobereader): Already installed. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:50, DEBUG : Going to install package 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:50, DEBUG : Package 'Adobe Shockwave Player 11' (shockwave11_mozilla): Not yet processed during this session. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '11.5.9.620' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=11.5.9.620'. 2012-02-03 14:38:50, DEBUG : Comparing version: '11.6.3.633' <=> '11.5.9.620'. 2012-02-03 14:38:50, DEBUG : Comparing version fragments: '11' <=> '11' 2012-02-03 14:38:50, DEBUG : Comparing version fragments: '6' <=> '5' 2012-02-03 14:38:50, INFO : Package 'Adobe Shockwave Player 11' (shockwave11_mozilla): Already installed but version mismatch.|Installed revision: '11.5.9.620'|Available revision: '11.6.3.633'.|Preparing upgrade. 2012-02-03 14:38:50, DEBUG : Package 'Adobe Shockwave Player 11' (shockwave11_mozilla): Prepared for upgrade. 2012-02-03 14:38:50, DEBUG : Installation of references (dependencies) for 'Adobe Shockwave Player 11' (shockwave11_mozilla) successfully finished. 2012-02-03 14:38:50, INFO : Installing 'Adobe Shockwave Player 11' (shockwave11_mozilla)... 2012-02-03 14:38:50, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:50, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:50, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:50, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:50, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:50, DEBUG : Install type: upgrade 2012-02-03 14:38:50, DEBUG : Fetched 3 upgrade command(s). 2012-02-03 14:38:50, DEBUG : Executing command: 'msiexec /qb /i "%SOFTWARE%\pub\apps\shockwave\%version%\sw_lic_full_installer.msi"' ('msiexec /qb /i "\\install\tech\pub\apps\shockwave\11.6.3.633\sw_lic_full_installer.msi"'). 2012-02-03 14:38:52, DEBUG : Command in installation of Adobe Shockwave Player 11 returned exit code [0]. Success. 2012-02-03 14:38:52, DEBUG : Executing command: 'cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' ('cmd /c copy /y "C:\Windows\system32\Adobe\Director\np32dsw.dll" "C:\Program Files\Mozilla Firefox\plugins\"'). 2012-02-03 14:38:52, INFO : Command 'cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' returned exit code [1]. This exit code indicates success. 2012-02-03 14:38:52, INFO : Command in installation of Adobe Shockwave Player 11 returned exit code [1]. This exit code indicates success. 2012-02-03 14:38:52, DEBUG : Executing command: 'cmd /c copy /y "%WINDIR%\SysWOW64\Adobe\Director\np32dsw.dll" "%ProgramFiles(x86)%\Mozilla Firefox\plugins\"' ('cmd /c copy /y "C:\Windows\SysWOW64\Adobe\Director\np32dsw.dll" "C:\Program Files (x86)\Mozilla Firefox\plugins\"'). 2012-02-03 14:38:52, INFO : Command 'cmd /c copy /y "%WINDIR%\SysWOW64\Adobe\Director\np32dsw.dll" "%ProgramFiles(x86)%\Mozilla Firefox\plugins\"' returned exit code [0]. This exit code indicates success. 2012-02-03 14:38:52, INFO : Command in installation of Adobe Shockwave Player 11 returned exit code [0]. This exit code indicates success. 2012-02-03 14:38:52, DEBUG : Checking existence of package: Adobe Shockwave Player 11 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:52, DEBUG : Trying to find version of C:\Windows\system32\Adobe\Shockwave 11\control.dll 2012-02-03 14:38:52, DEBUG : Unable to find file version for C:\Windows\system32\Adobe\Shockwave 11\control.dll : 2012-02-03 14:38:52, DEBUG : Unable to find the file version for 'C:\Windows\system32\Adobe\Shockwave 11\control.dll'. 2012-02-03 14:38:52, DEBUG : Searching for previously executed checks with attributes type='file', condition='versionequalto', path='%SYSTEMROOT%\\system32\\Adobe\\Shockwave 11\\control.dll', value='%version%' 2012-02-03 14:38:52, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:38:52, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:52, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:52, DEBUG : Trying to find version of C:\Windows\SysWOW64\Adobe\Shockwave 11\control.dll 2012-02-03 14:38:52, DEBUG : Obtained version '11.6.3.633'. 2012-02-03 14:38:52, DEBUG : Comparing version: '11.6.3.633' <=> '11.6.3.633'. 2012-02-03 14:38:52, DEBUG : Checking file version 11.6.3.633 is versionequalto (than) 11.6.3.633 - got result 0. 2012-02-03 14:38:52, DEBUG : File version check for file 'C:\Windows\SysWOW64\Adobe\Shockwave 11\control.dll' returned true for operation type versionequalto. 2012-02-03 14:38:52, DEBUG : Searching for previously executed checks with attributes type='file', condition='versionequalto', path='%SYSTEMROOT%\\SysWOW64\\Adobe\\Shockwave 11\\control.dll', value='%version%' 2012-02-03 14:38:52, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:38:52, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:52, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:52, DEBUG : Result of logical 'OR' check is true. 2012-02-03 14:38:52, DEBUG : Uninstall entry 'Adobe Shockwave Player 11.6' matches string 'Adobe Shockwave Player 11.6'. 2012-02-03 14:38:52, DEBUG : Uninstall entry for Adobe Shockwave Player 11.6 was found: test successful. 2012-02-03 14:38:52, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='exists', path='Adobe Shockwave Player 11.6' 2012-02-03 14:38:52, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:38:52, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:52, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:52, DEBUG : Result of logical 'OR' check is true. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '11.5.9.620' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=11.5.9.620'. 2012-02-03 14:38:52, DEBUG : Removing currently existing settings node first: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.5.9.620. 2012-02-03 14:38:52, DEBUG : Removing package id 'shockwave11_mozilla' from settings. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633. 2012-02-03 14:38:52, DEBUG : Saving sorted settings to 'C:\Windows\System32\wpkg.xml'.true 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:38:52, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:52, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_VERSION' of value '11.0.1.152' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11c.ocx' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_0_1.ocx' 2012-02-03 14:38:52, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_0_1.dll' 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_VERSION=11.0.1.152'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11c.ocx'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_0_1.ocx'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_0_1.dll'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.0.1.152. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:38:52, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:38:52, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:38:52, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Adobe Reader' (adobereader), Revision 10.1.2. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '26' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=26'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Java Runtime Environment 6' (java6-x86), Revision 26. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Java Runtime Environment 6 Update 24' (java6), Revision 24. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7), Revision 2. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7-x86), Revision 2. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'LibreOffice' (libreoffice), Revision 3.4.5. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '9.0.1' 2012-02-03 14:38:52, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:52, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=9.0.1'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:52, DEBUG : Adding settings node: 'Mozilla Firefox' (firefox), Revision 9.0.1. 2012-02-03 14:38:52, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:52, DEBUG : Installation of references (chained) for 'Adobe Shockwave Player 11' (shockwave11_mozilla) successfully finished. 2012-02-03 14:38:52, INFO : Package 'Adobe Shockwave Player 11' (shockwave11_mozilla): Package and all chained packages installed successfully. 2012-02-03 14:38:52, INFO : Processing (upgrade) of Adobe Shockwave Player 11 successful. 2012-02-03 14:38:52, DEBUG : Cleaning up temporary downloaded files 2012-02-03 14:38:52, DEBUG : Restoring previous environment. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:38:52, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:52, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:52, DEBUG : Going to install package 'Mozilla Firefox' (firefox), Revision 10.0, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:52, DEBUG : Package 'Mozilla Firefox' (firefox): Not yet processed during this session. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:38:52, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:52, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '9.0.1' 2012-02-03 14:38:52, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:52, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=9.0.1'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:52, DEBUG : Comparing version: '10.0' <=> '9.0.1'. 2012-02-03 14:38:52, DEBUG : Comparing version fragments: '10' <=> '9' 2012-02-03 14:38:52, INFO : Package 'Mozilla Firefox' (firefox): Already installed but version mismatch.|Installed revision: '9.0.1'|Available revision: '10.0'.|Preparing upgrade. 2012-02-03 14:38:52, DEBUG : Package 'Mozilla Firefox' (firefox): Prepared for upgrade. 2012-02-03 14:38:52, DEBUG : Installation of references (dependencies) for 'Mozilla Firefox' (firefox) successfully finished. 2012-02-03 14:38:52, INFO : Installing 'Mozilla Firefox' (firefox)... 2012-02-03 14:38:52, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:52, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:52, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:52, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:38:52, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:52, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:52, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:52, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:52, DEBUG : Install type: upgrade 2012-02-03 14:38:52, DEBUG : Fetched 2 upgrade command(s). 2012-02-03 14:38:52, DEBUG : Executing command: 'taskkill /F /IM Firefox.exe'. 2012-02-03 14:38:52, INFO : Command 'taskkill /F /IM Firefox.exe' returned exit code [0]. This exit code indicates success. 2012-02-03 14:38:52, INFO : Command in installation of Mozilla Firefox returned exit code [0]. This exit code indicates success. 2012-02-03 14:38:52, DEBUG : Executing command: '"%SOFTWARE%\pub\apps\mozilla\Firefox Setup %version%.exe" -ms' ('"\\install\tech\pub\apps\mozilla\Firefox Setup 10.0.exe" -ms'). 2012-02-03 14:38:58, DEBUG : Command in installation of Mozilla Firefox returned exit code [0]. Success. 2012-02-03 14:38:58, DEBUG : Checking existence of package: Mozilla Firefox 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:38:58, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:58, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:58, DEBUG : Uninstall entry 'Mozilla Firefox 10.0 (x86 en-US)' matches string 'Mozilla Firefox 10.0 (x86 en-US)'. 2012-02-03 14:38:58, DEBUG : Uninstall entry for Mozilla Firefox %version% (%architecture% %locale%) was found: test successful. 2012-02-03 14:38:58, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='exists', path='Mozilla Firefox %version% (%architecture% %locale%)' 2012-02-03 14:38:58, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:38:58, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:38:58, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '9.0.1' 2012-02-03 14:38:58, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:58, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=9.0.1'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:58, DEBUG : Removing currently existing settings node first: 'Mozilla Firefox' (firefox), Revision 9.0.1. 2012-02-03 14:38:58, DEBUG : Removing package id 'firefox' from settings. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:38:58, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:58, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Mozilla Firefox' (firefox), Revision 10.0. 2012-02-03 14:38:58, DEBUG : Saving sorted settings to 'C:\Windows\System32\wpkg.xml'.true 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_VERSION' of value '11.0.1.152' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11c.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_0_1.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_0_1.dll' 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_VERSION=11.0.1.152'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11c.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_0_1.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_0_1.dll'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.0.1.152. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:38:58, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:38:58, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:38:58, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Adobe Reader' (adobereader), Revision 10.1.2. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '26' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=26'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Java Runtime Environment 6' (java6-x86), Revision 26. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Java Runtime Environment 6 Update 24' (java6), Revision 24. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7), Revision 2. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7-x86), Revision 2. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'LibreOffice' (libreoffice), Revision 3.4.5. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:38:58, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:38:58, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:38:58, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:38:58, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:38:58, DEBUG : Adding settings node: 'Mozilla Firefox' (firefox), Revision 10.0. 2012-02-03 14:38:58, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:38:58, DEBUG : Installation of references (chained) for 'Mozilla Firefox' (firefox) successfully finished. 2012-02-03 14:38:58, INFO : Package 'Mozilla Firefox' (firefox): Package and all chained packages installed successfully. 2012-02-03 14:38:58, INFO : Processing (upgrade) of Mozilla Firefox successful. 2012-02-03 14:38:58, DEBUG : Cleaning up temporary downloaded files 2012-02-03 14:38:58, DEBUG : Restoring previous environment. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:38:58, DEBUG : Going to install package 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.1.102.55, (execute flag is '', notify flag is 'true'). 2012-02-03 14:38:58, DEBUG : Package 'Adobe Flash Player' (AdobeFlashPlayer): Not yet processed during this session. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_VERSION' of value '11.0.1.152' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11c.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_0_1.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_0_1.dll' 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_VERSION=11.0.1.152'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11c.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_0_1.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_0_1.dll'. 2012-02-03 14:38:58, DEBUG : Comparing version: '11.1.102.55' <=> '11.0.1.152'. 2012-02-03 14:38:58, DEBUG : Comparing version fragments: '11' <=> '11' 2012-02-03 14:38:58, DEBUG : Comparing version fragments: '1' <=> '0' 2012-02-03 14:38:58, INFO : Package 'Adobe Flash Player' (AdobeFlashPlayer): Already installed but version mismatch.|Installed revision: '11.0.1.152'|Available revision: '11.1.102.55'.|Preparing upgrade. 2012-02-03 14:38:58, DEBUG : Package 'Adobe Flash Player' (AdobeFlashPlayer): Prepared for upgrade. 2012-02-03 14:38:58, DEBUG : Installation of references (dependencies) for 'Adobe Flash Player' (AdobeFlashPlayer) successfully finished. 2012-02-03 14:38:58, INFO : Installing 'Adobe Flash Player' (AdobeFlashPlayer)... 2012-02-03 14:38:58, DEBUG : Reading variables from hosts[s] 2012-02-03 14:38:58, DEBUG : Reading variables from profile[s] 2012-02-03 14:38:58, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:38:58, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:38:58, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:38:58, DEBUG : Install type: upgrade 2012-02-03 14:38:58, DEBUG : Found inclusion for command type install. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' does not match expression 'x86'. 2012-02-03 14:38:58, DEBUG : No value of 'architecture' matched 'x86'. Skipping to next definition. 2012-02-03 14:38:58, DEBUG : Could not match all attributes of XML node to current host. Skipping to next definition. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' does not match expression 'x86'. 2012-02-03 14:38:58, DEBUG : No value of 'architecture' matched 'x86'. Skipping to next definition. 2012-02-03 14:38:58, DEBUG : Could not match all attributes of XML node to current host. Skipping to next definition. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Found inclusion for command type remove. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' does not match expression 'x86'. 2012-02-03 14:38:58, DEBUG : No value of 'architecture' matched 'x86'. Skipping to next definition. 2012-02-03 14:38:58, DEBUG : Could not match all attributes of XML node to current host. Skipping to next definition. 2012-02-03 14:38:58, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:38:58, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:38:58, DEBUG : Fetched 5 upgrade command(s). 2012-02-03 14:38:58, DEBUG : Executing command: 'taskkill /F /IM Firefox.exe'. 2012-02-03 14:38:58, INFO : Command 'taskkill /F /IM Firefox.exe' returned exit code [128]. This exit code indicates success. 2012-02-03 14:38:58, INFO : Command in installation of Adobe Flash Player returned exit code [128]. This exit code indicates success. 2012-02-03 14:38:58, DEBUG : Executing command: 'taskkill /F /IM iexplore.exe'. 2012-02-03 14:38:58, INFO : Command 'taskkill /F /IM iexplore.exe' returned exit code [128]. This exit code indicates success. 2012-02-03 14:38:58, INFO : Command in installation of Adobe Flash Player returned exit code [128]. This exit code indicates success. 2012-02-03 14:38:58, DEBUG : Executing command: '"%PKG_SOURCE%\uninstall_flash_player_64bit.exe" -uninstall' ('"\\install\tech\pub\apps\flash\\uninstall_flash_player_64bit.exe" -uninstall'). 2012-02-03 14:39:01, INFO : Command '"%PKG_SOURCE%\uninstall_flash_player_64bit.exe" -uninstall' returned exit code [0]. This exit code indicates success. 2012-02-03 14:39:01, INFO : Command in installation of Adobe Flash Player returned exit code [0]. This exit code indicates success. 2012-02-03 14:39:01, DEBUG : Executing command: '"%PKG_SOURCE%\install_flash_player_11_active_x_64bit.exe" /install ' ('"\\install\tech\pub\apps\flash\\install_flash_player_11_active_x_64bit.exe" /install '). 2012-02-03 14:39:07, DEBUG : Command in installation of Adobe Flash Player returned exit code [0]. Success. 2012-02-03 14:39:07, DEBUG : Executing command: '"%PKG_SOURCE%\install_flash_player_11_plugin_64bit.exe" /install ' ('"\\install\tech\pub\apps\flash\\install_flash_player_11_plugin_64bit.exe" /install '). 2012-02-03 14:39:11, DEBUG : Command in installation of Adobe Flash Player returned exit code [0]. Success. 2012-02-03 14:39:11, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:39:11, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:39:11, DEBUG : Checking existence of package: Adobe Flash Player 2012-02-03 14:39:11, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:39:11, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:39:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:11, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:39:11, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:39:11, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:39:11, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:39:11, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:39:11, DEBUG : Uninstall entry 'Adobe Flash Player 11 ActiveX 64-bit' matches expression 'Adobe Flash Player .+ ActiveX.*'. 2012-02-03 14:39:11, DEBUG : Found version of 'Adobe Flash Player .+ ActiveX.*' at HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX: 11.1.102.55|Comparing to expected version: %PKG_VERSION%. 2012-02-03 14:39:11, DEBUG : Comparing version: '11.1.102.55' <=> '11.1.102.55'. 2012-02-03 14:39:11, DEBUG : Comparing uninstall version '11.1.102.55' to expected version '11.1.102.55' using condition 'versiongreaterorequal' returned 0. 2012-02-03 14:39:11, DEBUG : Uninstall version check for package 'Adobe Flash Player .+ ActiveX.*' returned true for operation type versiongreaterorequal. 2012-02-03 14:39:11, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='versiongreaterorequal', path='Adobe Flash Player .+ ActiveX.*', value='%PKG_VERSION%' 2012-02-03 14:39:11, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:39:11, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:39:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:11, DEBUG : Uninstall entry 'Adobe Flash Player 11 Plugin 64-bit' matches expression 'Adobe Flash Player .+ Plugin.*'. 2012-02-03 14:39:11, DEBUG : Found version of 'Adobe Flash Player .+ Plugin.*' at HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin: 11.1.102.55|Comparing to expected version: %PKG_VERSION%. 2012-02-03 14:39:11, DEBUG : Comparing version: '11.1.102.55' <=> '11.1.102.55'. 2012-02-03 14:39:11, DEBUG : Comparing uninstall version '11.1.102.55' to expected version '11.1.102.55' using condition 'versiongreaterorequal' returned 0. 2012-02-03 14:39:11, DEBUG : Uninstall version check for package 'Adobe Flash Player .+ Plugin.*' returned true for operation type versiongreaterorequal. 2012-02-03 14:39:11, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='versiongreaterorequal', path='Adobe Flash Player .+ Plugin.*', value='%PKG_VERSION%' 2012-02-03 14:39:11, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:39:11, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:39:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:11, DEBUG : Trying to find version of C:\Windows\SysWOW64\Macromed\Flash\NPSWF32.dll 2012-02-03 14:39:12, DEBUG : Obtained version '11.1.102.55'. 2012-02-03 14:39:12, DEBUG : Comparing version: '11.1.102.55' <=> '11.1.102.55'. 2012-02-03 14:39:12, DEBUG : Checking file version 11.1.102.55 is versiongreaterorequal (than) 11.1.102.55 - got result 0. 2012-02-03 14:39:12, DEBUG : File version check for file 'C:\Windows\SysWOW64\Macromed\Flash\NPSWF32.dll' returned true for operation type versiongreaterorequal. 2012-02-03 14:39:12, DEBUG : Searching for previously executed checks with attributes type='file', condition='versiongreaterorequal', path='%PKG_DESTINATION%\\%PKG_FILE_PLUGIN%', value='%PKG_VERSION%' 2012-02-03 14:39:12, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:39:12, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:39:12, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:13, DEBUG : Trying to find version of C:\Windows\System32\Macromed\Flash\NPSWF64_11_1_102.dll 2012-02-03 14:39:14, DEBUG : Obtained version '11.1.102.55'. 2012-02-03 14:39:14, DEBUG : Comparing version: '11.1.102.55' <=> '11.1.102.55'. 2012-02-03 14:39:14, DEBUG : Checking file version 11.1.102.55 is versiongreaterorequal (than) 11.1.102.55 - got result 0. 2012-02-03 14:39:14, DEBUG : File version check for file 'C:\Windows\System32\Macromed\Flash\NPSWF64_11_1_102.dll' returned true for operation type versiongreaterorequal. 2012-02-03 14:39:14, DEBUG : Searching for previously executed checks with attributes type='file', condition='versiongreaterorequal', path='%PKG_DESTINATION_X64%\\%PKG_FILE_PLUGIN_X64%', value='%PKG_VERSION%', architecture='x64' 2012-02-03 14:39:14, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:39:14, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:39:14, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:39:14, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:39:14, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '11.0.1.152' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11c.ocx' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_0_1.ocx' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_0_1.dll' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=11.0.1.152'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11c.ocx'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_0_1.ocx'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_0_1.dll'. 2012-02-03 14:39:14, DEBUG : Removing currently existing settings node first: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.0.1.152. 2012-02-03 14:39:14, DEBUG : Removing package id 'AdobeFlashPlayer' from settings. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:39:14, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:39:14, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.1.102.55. 2012-02-03 14:39:14, DEBUG : Saving sorted settings to 'C:\Windows\System32\wpkg.xml'.true 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:39:14, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:39:14, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.1.102.55. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:39:14, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:39:14, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:39:14, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:39:14, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:39:14, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Adobe Reader' (adobereader), Revision 10.1.2. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:39:14, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:39:14, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 14:39:14, DEBUG : Got variable 'version' of value '26' 2012-02-03 14:39:14, DEBUG : Setting variable: 'version=26'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Java Runtime Environment 6' (java6-x86), Revision 26. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Java Runtime Environment 6 Update 24' (java6), Revision 24. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:39:14, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:39:14, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7), Revision 2. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:39:14, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:39:14, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7-x86), Revision 2. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'LibreOffice' (libreoffice), Revision 3.4.5. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:39:14, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:39:14, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:39:14, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:39:14, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:39:14, DEBUG : Adding settings node: 'Mozilla Firefox' (firefox), Revision 10.0. 2012-02-03 14:39:14, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:14, DEBUG : Installation of references (chained) for 'Adobe Flash Player' (AdobeFlashPlayer) successfully finished. 2012-02-03 14:39:14, INFO : Package 'Adobe Flash Player' (AdobeFlashPlayer): Package and all chained packages installed successfully. 2012-02-03 14:39:14, INFO : Processing (upgrade) of Adobe Flash Player successful. 2012-02-03 14:39:14, DEBUG : Cleaning up temporary downloaded files 2012-02-03 14:39:14, DEBUG : Restoring previous environment. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:39:14, DEBUG : Going to install package 'PDFCreator' (pdfcreator), Revision 1.2.3, (execute flag is '', notify flag is 'true'). 2012-02-03 14:39:14, DEBUG : Package 'PDFCreator' (pdfcreator): Not yet processed during this session. 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:39:14, DEBUG : Package 'PDFCreator' (pdfcreator): Not in local package database; Marking for installation. 2012-02-03 14:39:14, DEBUG : Package 'PDFCreator' (pdfcreator): Prepared for installation. 2012-02-03 14:39:14, DEBUG : Checking existence of package: PDFCreator 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:39:14, DEBUG : Trying to find version of C:\Program Files\PDFCreator\PDFCreator.exe 2012-02-03 14:39:14, DEBUG : Unable to find file version for C:\Program Files\PDFCreator\PDFCreator.exe : 2012-02-03 14:39:14, DEBUG : Unable to find the file version for 'C:\Program Files\PDFCreator\PDFCreator.exe'. 2012-02-03 14:39:14, DEBUG : Searching for previously executed checks with attributes type='file', condition='versiongreaterorequal', path='%PROGRAMFILES%\\PDFCreator\\PDFCreator.exe', value='%PKG_VERSIONexe%' 2012-02-03 14:39:14, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:39:14, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:39:14, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:14, DEBUG : Trying to find version of C:\Program Files (x86)\PDFCreator\PDFCreator.exe 2012-02-03 14:39:14, DEBUG : Unable to find file version for C:\Program Files (x86)\PDFCreator\PDFCreator.exe : 2012-02-03 14:39:14, DEBUG : Unable to find the file version for 'C:\Program Files (x86)\PDFCreator\PDFCreator.exe'. 2012-02-03 14:39:14, DEBUG : Searching for previously executed checks with attributes type='file', condition='versiongreaterorequal', path='%PROGRAMFILES(x86)%\\PDFCreator\\PDFCreator.exe', value='%PKG_VERSIONexe%' 2012-02-03 14:39:14, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:39:14, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:39:14, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:39:14, DEBUG : Result of logical 'OR' check is false 2012-02-03 14:39:14, INFO : Package 'PDFCreator' (pdfcreator): Not installed (checks failed). Preparing installation. 2012-02-03 14:39:14, DEBUG : Installation of references (dependencies) for 'PDFCreator' (pdfcreator) successfully finished. 2012-02-03 14:39:14, INFO : Installing 'PDFCreator' (pdfcreator)... 2012-02-03 14:39:14, DEBUG : Reading variables from hosts[s] 2012-02-03 14:39:14, DEBUG : Reading variables from profile[s] 2012-02-03 14:39:14, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:39:14, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:39:14, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:39:14, DEBUG : Install type: install 2012-02-03 14:39:14, DEBUG : Fetched 2 install command(s). 2012-02-03 14:39:14, DEBUG : Executing command: '%PKG_SOURCE%\PDFCreator-%PKG_VERSIONu%_setup.exe /LOADINF="%SOFTWARE%\pdfcreator\PDFCreatorinf" /DontUseYahooSearch /VERYSILENT /NORESTART /SP-' ('\\install\tech\pub\apps\pdfcreator\\PDFCreator-1_2_3_setup.exe /LOADINF="\\install\tech\pdfcreator\PDFCreatorinf" /DontUseYahooSearch /VERYSILENT /NORESTART /SP-'). 2012-02-03 14:40:11, DEBUG : Command in installation of PDFCreator returned exit code [0]. Success. 2012-02-03 14:40:11, DEBUG : Executing command: '%COMSPEC% /C REG ADD "HKLM\SOFTWARE\PDFCreator\Program" /v "UpdateInterval" /t REG_SZ /d "0" /f' ('C:\Windows\system32\cmd.exe /C REG ADD "HKLM\SOFTWARE\PDFCreator\Program" /v "UpdateInterval" /t REG_SZ /d "0" /f'). 2012-02-03 14:40:11, DEBUG : Command in installation of PDFCreator returned exit code [0]. Success. 2012-02-03 14:40:11, DEBUG : Checking existence of package: PDFCreator 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:40:11, DEBUG : Trying to find version of C:\Program Files\PDFCreator\PDFCreator.exe 2012-02-03 14:40:11, DEBUG : Unable to find file version for C:\Program Files\PDFCreator\PDFCreator.exe : 2012-02-03 14:40:11, DEBUG : Unable to find the file version for 'C:\Program Files\PDFCreator\PDFCreator.exe'. 2012-02-03 14:40:11, DEBUG : Searching for previously executed checks with attributes type='file', condition='versiongreaterorequal', path='%PROGRAMFILES%\\PDFCreator\\PDFCreator.exe', value='%PKG_VERSIONexe%' 2012-02-03 14:40:11, DEBUG : Found 1 previously executed checks. 2012-02-03 14:40:11, DEBUG : Replacing check results of previous evaluation 2012-02-03 14:40:11, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:40:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:40:11, DEBUG : Trying to find version of C:\Program Files (x86)\PDFCreator\PDFCreator.exe 2012-02-03 14:40:11, DEBUG : Obtained version '1.2.0.3'. 2012-02-03 14:40:11, DEBUG : Comparing version: '1.2.0.3' <=> '1.2.0.3'. 2012-02-03 14:40:11, DEBUG : Checking file version 1.2.0.3 is versiongreaterorequal (than) 1.2.0.3 - got result 0. 2012-02-03 14:40:11, DEBUG : File version check for file 'C:\Program Files (x86)\PDFCreator\PDFCreator.exe' returned true for operation type versiongreaterorequal. 2012-02-03 14:40:11, DEBUG : Searching for previously executed checks with attributes type='file', condition='versiongreaterorequal', path='%PROGRAMFILES(x86)%\\PDFCreator\\PDFCreator.exe', value='%PKG_VERSIONexe%' 2012-02-03 14:40:11, DEBUG : Found 1 previously executed checks. 2012-02-03 14:40:11, DEBUG : Replacing check results of previous evaluation 2012-02-03 14:40:11, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:40:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:40:11, DEBUG : Result of logical 'OR' check is true. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'PDFCreator' (pdfcreator), Revision 1.2.3. 2012-02-03 14:40:11, DEBUG : Saving sorted settings to 'C:\Windows\System32\wpkg.xml'.true 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:40:11, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:40:11, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.1.102.55. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:40:11, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:40:11, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:40:11, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Adobe Reader' (adobereader), Revision 10.1.2. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '26' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=26'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 6' (java6-x86), Revision 26. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 6 Update 24' (java6), Revision 24. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7), Revision 2. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7-x86), Revision 2. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'LibreOffice' (libreoffice), Revision 3.4.5. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:40:11, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:40:11, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Mozilla Firefox' (firefox), Revision 10.0. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'PDFCreator' (pdfcreator), Revision 1.2.3. 2012-02-03 14:40:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:40:11, DEBUG : Installation of references (chained) for 'PDFCreator' (pdfcreator) successfully finished. 2012-02-03 14:40:11, INFO : Package 'PDFCreator' (pdfcreator): Package and all chained packages installed successfully. 2012-02-03 14:40:11, INFO : Processing (install) of PDFCreator successful. 2012-02-03 14:40:11, DEBUG : Cleaning up temporary downloaded files 2012-02-03 14:40:11, DEBUG : Restoring previous environment. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package '7-Zip'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '920' 2012-02-03 14:40:11, DEBUG : Got variable 'versionp' of value '9.20' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=920'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'versionp=9.20'. 2012-02-03 14:40:11, DEBUG : Going to install package '7-Zip' (7zip), Revision 920, (execute flag is '', notify flag is 'true'). 2012-02-03 14:40:11, DEBUG : Package '7-Zip' (7zip): Not yet processed during this session. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package '7-Zip'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '920' 2012-02-03 14:40:11, DEBUG : Got variable 'versionp' of value '9.20' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=920'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'versionp=9.20'. 2012-02-03 14:40:11, DEBUG : Package '7-Zip' (7zip): Not in local package database; Marking for installation. 2012-02-03 14:40:11, DEBUG : Package '7-Zip' (7zip): Prepared for installation. 2012-02-03 14:40:11, DEBUG : Checking existence of package: 7-Zip 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package '7-Zip'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '920' 2012-02-03 14:40:11, DEBUG : Got variable 'versionp' of value '9.20' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=920'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'versionp=9.20'. 2012-02-03 14:40:11, DEBUG : Uninstall entry '7-Zip 9.20 (x64 edition)' matches expression '7-Zip 9.20.*'. 2012-02-03 14:40:11, DEBUG : Uninstall entry for 7-Zip %versionp%.* was found: test successful. 2012-02-03 14:40:11, DEBUG : Searching for previously executed checks with attributes type='uninstall', condition='exists', path='7-Zip %versionp%.*' 2012-02-03 14:40:11, DEBUG : Unable to find any previously executed checks with these attributes. 2012-02-03 14:40:11, DEBUG : Saving unsorted settings to 'C:\Windows\System32\wpkg.xml'.false 2012-02-03 14:40:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:40:11, INFO : Package '7-Zip' (7zip): Already installed (checks succeeded). Checking dependencies and chained packages. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package '7-Zip'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '920' 2012-02-03 14:40:11, DEBUG : Got variable 'versionp' of value '9.20' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=920'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'versionp=9.20'. 2012-02-03 14:40:11, DEBUG : Adding settings node: '7-Zip' (7zip), Revision 920. 2012-02-03 14:40:11, DEBUG : Saving sorted settings to 'C:\Windows\System32\wpkg.xml'.true 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package '7-Zip'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '920' 2012-02-03 14:40:11, DEBUG : Got variable 'versionp' of value '9.20' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=920'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'versionp=9.20'. 2012-02-03 14:40:11, DEBUG : Adding settings node: '7-Zip' (7zip), Revision 920. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Adobe Flash Player'. 2012-02-03 14:40:11, DEBUG : Host attribute 'architecture' with value 'x64' matches expression 'x64'. 2012-02-03 14:40:11, DEBUG : XML node with special host attribute match found: architecture=x64 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSION' of value '11.1.102.55' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\flash\' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_DESTINATION' of value '%SystemRoot%\SysWOW64\Macromed\Flash' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_DESTINATION_X64' of value '%SystemRoot%\System32\Macromed\Flash' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_ACTIVEX' of value 'Flash11e.ocx' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_PLUGIN' of value 'NPSWF32.dll' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_ACTIVEX_X64' of value 'Flash64_11_1_102.ocx' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_FILE_PLUGIN_X64' of value 'NPSWF64_11_1_102.dll' 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSION=11.1.102.55'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\flash\'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_DESTINATION=%SystemRoot%\SysWOW64\Macromed\Flash'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_DESTINATION_X64=%SystemRoot%\System32\Macromed\Flash'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX=Flash11e.ocx'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_PLUGIN=NPSWF32.dll'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_ACTIVEX_X64=Flash64_11_1_102.ocx'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_FILE_PLUGIN_X64=NPSWF64_11_1_102.dll'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Adobe Flash Player' (AdobeFlashPlayer), Revision 11.1.102.55. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Adobe Reader'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '10.1.2' 2012-02-03 14:40:11, DEBUG : Got variable 'fileversion' of value '1012' 2012-02-03 14:40:11, DEBUG : Got variable 'locale' of value 'en_US' 2012-02-03 14:40:11, DEBUG : Got variable 'Desktop' of value 'Desktop' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=10.1.2'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'fileversion=1012'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'locale=en_US'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'Desktop=Desktop'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Adobe Reader' (adobereader), Revision 10.1.2. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Adobe Shockwave Player 11'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '11.6.3.633' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=11.6.3.633'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Adobe Shockwave Player 11' (shockwave11_mozilla), Revision 11.6.3.633. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Java Runtime Environment 6'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '26' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=26'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 6' (java6-x86), Revision 26. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 6 Update 24' (java6), Revision 24. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7), Revision 2. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Java Runtime Environment 7'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '2' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=2'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Java Runtime Environment 7' (java7-x86), Revision 2. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'LibreOffice' (libreoffice), Revision 3.4.5. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'Mozilla Firefox'. 2012-02-03 14:40:11, DEBUG : Got variable 'version' of value '10.0' 2012-02-03 14:40:11, DEBUG : Got variable 'architecture' of value 'x86' 2012-02-03 14:40:11, DEBUG : Got variable 'locale' of value 'en-US' 2012-02-03 14:40:11, DEBUG : Setting variable: 'version=10.0'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'architecture=x86'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'locale=en-US'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'Mozilla Firefox' (firefox), Revision 10.0. 2012-02-03 14:40:11, DEBUG : Reading variables from hosts[s] 2012-02-03 14:40:11, DEBUG : Reading variables from profile[s] 2012-02-03 14:40:11, DEBUG : Reading variables from package 'PDFCreator'. 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSION' of value '1.2.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONu' of value '1_2_3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_VERSIONexe' of value '1.2.0.3' 2012-02-03 14:40:11, DEBUG : Got variable 'PKG_SOURCE' of value '%SOFTWARE%\pub\apps\pdfcreator\' 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSION=1.2.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONu=1_2_3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_VERSIONexe=1.2.0.3'. 2012-02-03 14:40:11, DEBUG : Setting variable: 'PKG_SOURCE=%SOFTWARE%\pub\apps\pdfcreator\'. 2012-02-03 14:40:11, DEBUG : Adding settings node: 'PDFCreator' (pdfcreator), Revision 1.2.3. 2012-02-03 14:40:11, DEBUG : Saving XML : C:\Windows\System32\wpkg.xml 2012-02-03 14:40:11, DEBUG : Installation of references (dependencies) for '7-Zip' (7zip) successfully finished. 2012-02-03 14:40:11, INFO : Package '7-Zip' (7zip): Package and all dependencies are already installed. Skipping. 2012-02-03 14:40:11, DEBUG : Installation of references (chained) for '7-Zip' (7zip) successfully finished. 2012-02-03 14:40:11, INFO : Package '7-Zip' (7zip): Package and all chained packages are already installed. Skipping. 2012-02-03 14:40:11, INFO : User notification suppressed. Message: The automated software installation utility has completed installing or updating software on your system. No reboot was necessary. All updates are complete. Does anyone know why this package isn't installing properly? Thanks, Charlie |