Skip to content

Instantly share code, notes, and snippets.

@AlexLynd
Created July 16, 2021 20:29
Show Gist options
  • Save AlexLynd/b4abaea84f979619853a83eeccb4fee7 to your computer and use it in GitHub Desktop.
Save AlexLynd/b4abaea84f979619853a83eeccb4fee7 to your computer and use it in GitHub Desktop.
Windows CMD Desktop spammer script
@echo off
set iter=100
:loop
md %userprofile%\Desktop\%iter%
set /a iter=iter-1
if %iter%==0 goto exit
goto loop
:exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment