does anything execute after Reboot is called?
Other than a callback to .onRebootFailed, are there any circumstances in which commands will be executed after Reboot is called? Or does Reboot essentially act like Abort, terminating the installer immediately? For example:
Section
Reboot
MessageBox MB_OK "Can you see me?"
Section
Function .onRebootFailed
MessageBox MB_OK "Please reboot manually."
FunctionEnd
Is it ever possible for the "Can you see me?" message to pop up?Similary, if the reboot fails, does anything occur after .onRebootFailed executes, or does the installer terminate? (When trying to test this, I haven't been able to reproduce a reboot that fails.:))
Thanks!