Is it possible to reboot after you uninstall? I am using WiX to create my installer.
I understand we can reboot after installing using
<InstallExecuteSequence>
<ScheduleReboot After="InstallFinalize"/>
</InstallExecuteSequence>
But I want to reboot after uninstalling. Please advice.Thanks.
Use the Conditional Table:
Inside node it is a condition even this action will be executed or not.
REMOVE it’s a windows installer standart property. When the installer removes the product from the system, it sets REMOVE=ALL.
Look at msdn.microsoft.com/en-us/library/windows/desktop/…, msdn.microsoft.com/en-us/library/windows/desktop/….