This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- "Schedule Reboot at End" disabled
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 24, 2012
03:53 AM
"Schedule Reboot at End" disabled
Hello,
I would like to add the "Schedule Reboot at End" from the Gallery. Unfortunately the menu item is grayed and disabled. How can I add this action?
Regards Peter
I would like to add the "Schedule Reboot at End" from the Gallery. Unfortunately the menu item is grayed and disabled. How can I add this action?
Regards Peter
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 24, 2012
09:54 AM
Hello Peter,
In InstallShield Limited Edition, "Schedule a Reboot at end" option is not available. This option is available in InstallShield Express Edition.
However you could use VBScript Custom Action and schedule a Reboot. A sample VBScript that could be used is as follows
Set WSHShell = CreateObject("WScript.Shell")
WshShell.Run "C:\WINDOWS\system32\shutdown.exe -r -t 0"
Sequence the VBScript Custom Action After Setup Complete Success Dialog.
Thanks,
Bharath
In InstallShield Limited Edition, "Schedule a Reboot at end" option is not available. This option is available in InstallShield Express Edition.
However you could use VBScript Custom Action and schedule a Reboot. A sample VBScript that could be used is as follows
Set WSHShell = CreateObject("WScript.Shell")
WshShell.Run "C:\WINDOWS\system32\shutdown.exe -r -t 0"
Sequence the VBScript Custom Action After Setup Complete Success Dialog.
Thanks,
Bharath
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 31, 2012
07:56 AM
Thank you. The VBscript worked perfectly. Regards Peter