Changes
Fixed situation where WPKG would think the install had failed
Windows Virtual PC is a free add-on to Windows 7. See [http://support.microsoft.com/kb/958559 KB958559] for information and a download link. For Windows 8, it's been replaced with Hyper-V.
<source lang="xml">
<check type="uninstall" condition="exists" path="" />
<install cmd="wusa "%PKG_SOURCE%" /quiet /norestart" > <exit code="0" /> <exit code="3010" /> <!-- add reboot="postponed" to force a reboot; otherwise, Windows will ask the user --> <exit code="-2145124329" /> <!-- already installed --> </install>
<upgrade include="install" />
<remove cmd="wusa /uninstall /kb:958559 /quiet /norestart" > <exit code="any" /> </remove>
</package>