Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to shutdown PC in batch?

Status
Not open for further replies.

davyzhu

Advanced Member level 1
Joined
May 23, 2004
Messages
494
Helped
5
Reputation
10
Reaction score
2
Trophy points
1,298
Location
oriental
Activity points
4,436
Hi all,

I want to shut down PC in batch, how to do it? Thanks!
BTW, I use WinXP and Win2000. Thanks!

Best regards,
Davy
 

create a notepad file....

then put the bellow code inside
Code:
C:\WINDOWS\system32\shutdown.exe -s

then change the extension to ".bat"

run the file n ur pc will b shutdown in 60s... it is like when u get those virus tht will shut down ur pc last time,,,, i forget the virus/worm name...

if u wanted to cancel the shuting down process... type this in the "run" command...
Code:
shutdown.exe -a

more
Code:
ShutdownAllows you to shut down or restart a local or remote computer. Used without parameters, shutdown will logoff the current user. 

Syntax
shutdown [{-l|-s|-r|-a}] [-f] [-m [\\ComputerName]] [-t xx] [-c "message"] [-d[u][p]:xx:yy] 

Parameters
-l 
Logs off the current user, this is also the defualt. -m ComputerName takes precedence. 
-s 
Shuts down the local computer. 
-r 
Reboots after shutdown. 
-a 
Aborts shutdown. Ignores other parameters, except -l and ComputerName. You can only use -a during the time-out period. 
-f 
Forces running applications to close. 
-m [\\ComputerName] 
Specifies the computer that you want to shut down. 
-t xx 
Sets the timer for system shutdown in xx seconds. The default is 20 seconds. 
-c "message" 
Specifies a message to be displayed in the Message area of the System Shutdown window. You can use a maximum of 127 characters. You must enclose the message in quotation marks. 
-d [u][p]:xx:yy 
Lists the reason code for the shutdown. The following table lists the different values. Value Description 
u Indicates a user code. 
p Indicates a planned shutdown code. 
xx Specifies the major reason code (0-255). 
yy Specifies the minor reason code (0-65536). 

/? 
Displays help at the command prompt. 
Remarks
If you indicate a major and minor reason code, you must first define these reason codes on each computer for which you plan to use the particular reason. If the reason codes are not defined on the target computer, Event Viewer cannot log the correct reason text. 
Examples
To shut down \\MyServer in 60 seconds, force running applications to close, restart the computer after shutdown, indicate a user code, indicate that the shutdown is planned, log major reason code 125, and log minor reason code 1, type:

shutdown -r -f -m \\MyServer -t 60 -d up:125:1

for even more...locate this file in ur winxp....
C:\WINDOWS\Help\ntcmds.chm
it hav all the command line,,,
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top