Author: slac3dork
Site: http://slac3dork.110mb.com
Summary: A vbs code snippet to shutdown Computer with Windows operating system. Tested on XP.
' _________ .__ .____ _______
' / _____/ ____ |__|_____ | | \ _ \ ____
' \_____ \ / \| \____ \| | / /_\ \ / ___\
' / \ | \ | |_> > |__\ \_/ \/ /_/ >
'/_______ /___| /__| __/|_______ \_____ /\___ /
' \/ \/ |__| \/ \//_____/
' http://snippet.c0de.me
' slac3dork@gmail.com
Set shell = WScript.CreateObject("WScript.Shell")
shell.Run "%windir%\system32\shutdown.exe -s"



