Created
October 30, 2012 14:37
-
-
Save minitech/3980564 to your computer and use it in GitHub Desktop.
A shutdown with confirmation for Windows 8 pinning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If MsgBox("Are you sure you want to shut down?", vbExclamation Or vbYesNo Or vbDefaultButton2, "Shut down") = vbYes Then | |
Dim wsh : Set wsh = CreateObject("WScript.Shell") | |
wsh.Run "shutdown /s /t 0" | |
End If |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment