Created
July 1, 2011 14:05
-
-
Save drewlesueur/1058607 to your computer and use it in GitHub Desktop.
windows script host
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
WScript.Echo("Hello world"); | |
// var send = WScript.CreateObject("System.Windows.Forms.SendKeys"); | |
// send.Send("{PRTSC}"); | |
voice = WScript.CreateObject("SAPI.SpVoice"); | |
voice.Speak("Hello world"); | |
http://msdn.microsoft.com/en-us/library/d5fk67ky(v=vs.85).aspx | |
//http://www.sans.org/reading_room/whitepapers/hackers/windows-script-host-hack-windows_33583 | |
// http://msdn.microsoft.com/en-us/library/8c6yea83(v=VS.85).aspx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment