Is it possible to prompt for restart machine after installation using WiX?
views:
112answers:
2
+3
A:
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product
Name='Sample App'
Id='PRODUCT-GUID-HERE'
UpgradeCode='UPGRADE-GUID-HERE'
Language='1033'
Version='YOUR-APP-VERSION-HERE'
Manufacturer='YOU!'>
<InstallExecuteSequence>
<ScheduleReboot After="InstallFinalize"/>
</InstallExecuteSequence>
</Product>
</Wix>
think I got it.
abmv
2009-12-15 15:21:44
A:
Yes. See the documentation for the REBOOT
property in Windows Installer.
i.e.:
<Property Id="REBOOT"><![CDATA[Force]]></Property>
sascha
2009-12-16 03:16:36