Shadow_x21 Tutorial : Remote and Local Shutdowns
Shadow_x21
To Remote Shutdown A Computer. Used to shutdown a computer on the same network. Like at school
open notepad or a simple text editor( not microsoft word) or you can use the command prompt
type
CODE
@echo off
cls
shutdown -m \\Computername -s -t 120 -c "Comment Goes Here"
Explanation:
@echo off : means that the code you typed below @echo off will not be displayed to the user
cls : will clear the screen
shutdown : represents shutdown.exe or the shutdown method
-m : represents a remote shutdown
\\computername : name of computer you want to shutdown
-s : initiates the shutdown method
-t : represents the time to stall before the computer shutsdown
120 = 2 minutes : is the time before the computer shutsdown. max three digits. minimum is 1 digit
-c : represents that a comment will be displayed on the targets computer. you do not have to do this.
"comment" : represents the comment that will be dispalyed.
You Can Also use -r to restart the computer instaed of -s
To Stop RemoteShutdown from occuring.
CODE
@echo off
cls
shutdown -m \\Computername -a
cls
shutdown -m \\Computername -a
Explanation :
same as before except comments are disabled in remoteshutdown stop
-a will stop any remote shutdown as long as the syntax is correct an computername is specified
Local Shutdown. local only to that computer
CODE
@echo off
cls
shutdown -s -t 30 -c "This Is Your Computer Speaking"
Explanation:
pretty much same as before except computer name is not required because it is only local to this computer.
and to stop this shutdown type
Shutdown -a
in the command prompt or if you used notepad craete a new file and type
CODE
@echo off
cls
shutdown -a
If you used notepad for any of this save your File as Whateveryouwant.bat
examples:
hi.bat
bye.bat
penis.bat
welcome.bat
I_JustSawA.bat
The purpose of this is for safe knowledge or if it happens to you you know how to stop it.
I use it mainly to send people messages at school and they get all freaked Out ("I'm Watching You") Ha
if you need this further explained or want more stuff like this Reply
Thanks...
Shadow_x21

