AXIONSECURITY

ZeroTrace

Windows Scripts

1. Shutdown

This script fully shutdowns the computer

comboKey "gui+x"
delay "1000"
key "u"
key "u"

2. Log Out Prank

This script logs the user out of their Windows session.

terminal "windows"
delay "1000"
writeLn "shutdown /l"

3. Fake Blue Screen

This script opens a fake blue screen image in full screen.

terminal "windows"
delay "1000"
writeLn "start https://fakebsod.com/windows-8-and-10/"
delay "1000"
key "F11"

4. Invert Mouse Buttons

This script swaps the left and right mouse buttons.

terminal "windows"
delay "1000"
writeLn "rundll32.exe user32.dll,SwapMouseButton"
delay "1000"
comboKey "alt+F4"

5. Open Rickroll

This script opens a browser to the Rickroll video.

terminal "windows"
delay "1000"
writeLn "start https://www.youtube.com/watch?v=dQw4w9WgXcQ"
delay "1000"
key "F11"
delay "500"
key "f"

6. Fake Update Screen

This script opens a fake Windows update screen.

terminal "windows"
delay "1000"
writeLn "start https://fakeupdate.net/win10ue/"
delay "1000"
key "F11"

Notes:

  • Use these scripts responsibly and only in environments where you have permission.

On this page