Reboot MachinesJanuary 4, 2010
>>Script Language and Platform: MS-DOS Batch File
a. Windows 2003 machine
Steps:
b. Login or the scheduled job that runs this reboot.bat should have admin access to all the machines 1. Step1: Create D:\scripts\reboot\serverlist.txt and the list all the machines that you want to reboot.
Example:
MyServer
SQL1Prod SQL1QA DOTNET1a 2. Step2: Create D:\scripts\reboot\reboot.bat REM Objective: TO reboot all the machines listed in D:\script\reboot\serverlist.txt REM Created by : MAK REM Created Date: Jan 5, 2005 REM Save this file as D:\scripts\reboot\reboot.bat for /f "tokens=1,2,3" %%i in (D:\scripts\reboot\serverlist.txt) do c:\windows\system32\shutdown.exe /m \\%%i /r /f /c "You machine is going to be restarted in 10 minutes" /t 600 3. Step3: Create D:\scripts\reboot\Abortreboot.bat REM Objective: TO abort reboot on all the machine listed in D:\script\reboot\serverlist.txt REM Created by : MAK REM Created Date: Jan 5, 2005 REM Save this file as D:\scripts\reboot\abortreboot.bat for /f "tokens=1,2,3" %%i in (D:\scripts\reboot\serverlist.txt) do c:\windows\system32\shutdown.exe /a /m \\%%i Author: MAK
Download Script:
Disclaimer: We hope that the information on these script pages is
valuable to you. Your use of the information contained in these pages,
however, is at your sole risk. All information on these pages is provided
"as -is", without any warranty, whether express or implied, of its accuracy,
completeness, or fitness for a particular purpose...
Disclaimer Continued
Back to Database Journal Home |