Saved Bookmarks
| 1. |
Solve : Batch File to Restart Workstation? |
|
Answer» Does anybody know a command line to reboot a workstation but displaying a menu with a "reboot now" option or later? Does anybody know a command line to reboot a workstation but displaying a menu with a "reboot now" option or later?YES it does, you can configure it to shutdown after xxxx seconds. this will allow the user to cancel if need be. If that does not SUIT your needs, just do it in your batch file like this Code: [Select]....installation code here .... print to user: do you want to reboot now.? .... check if user enters Y or y for yes .... if entered "Y" or "y" , use the shutdown command to reboot .... if no do something else ... |
|