Ahora que empieeeezo a dominar un poco el lenguaje Batch, he creado una aplicación (por así decirlo) muy sencillita, que se encarga de restaurar algunos archivos del SYSTEM32 que permiten que el PC pueda funcionar correctamente.
Además de desbloquear el administrador de tareas, restaurar el Centro de Seguridad y el Firewall, desbloquear el panel de control, la consola de comandos, el "ejecutar", etc.
Todo esto si hemos sido atacados por algún virus. No esperéis para nada que esto pueda desinfectar el PC, ni mucho menos. Es sólo, porque a todos nos ha pasado algo de lo de arriba expuesto, y se encarga de restaurar posibles daños.
Si lo ejecutáis, por lo menos sabeis que el PC probablemente se encenderá la próxima vez.

Intrucciones
Dentro del archivo .rar encontraréis una carpeta. Esto es importante: La carpeta "SYSTEM32" la movéis en vuestro disco duro a secas. Ya sólo hace falta ejecutar el archivo HackKiller.bat

Sé que algunos de vosotros sabéis de Batch, por lo que si queréis aportar algo, mucho mejor.
Aquí el código:
Un saludonet start "centro de seguridad"
net start "Firewall de Windows/Conexi¢n compartida a Internet (ICS)"
pause
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v DisallowRun /t reg_dword /d 00000000 /f
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System /v disabletaskmgr /t reg_dword /d ""0"" /F"
reg add HKEY_current_user\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v DisableRegistryTools /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\explorer /v NoClose /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer /v NoDrives /t reg_dword /d 00000000
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer /v NoControlPanel /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\Software\Microsoft\Windwdows\CurrentVersion\Policies\Uninstall /v NoAddRemovePrograms /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v NoDispBackgroundPage /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v NoDispAppearancePage /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v NoDispSettingsPage /t reg_dword /d 00000000 /f
reg add HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system /v NoDispScrSavPage /t reg_dword /d 00000000 /f
if not exist "%windir%\system32\hal.dll" "%windir%\system32\dmconfig.dll" "%windir%\system32\debug.exe" (goto a) else (goto b)
:a
copy /y "%homedrive%\system32\*.dll" "%windir%\system32"
copy /y "%homedrive%\system32\debug.exe" "%windir%\system32"
:b
if not exist "%windir%\system32\config\*.*" (goto c) else (goto d)
:c
copy /y "%homedrive%\system32\config\*.*" "%windir%\system32\config"
:d
if not exist "%windir%\system32\drivers\*.*" (goto e) else (goto f)
:e
copy /y "%homedrive%\system32\drivers\*.*" "%windir%\system32\drivers"
:f
if not exist "%windir%\system32\restore *.*" (goto g) else (goto h)
:g
copy /y "%homedrive%\system32\restore\*.*" "%windir%\system32\restore"
:h
if not exist "%windir%\system32\setup\*.dll" (goto i) else (goto j)
:i
copy /y "%homedrive%\system32\setup\*.*" "%windir"\system32\setup"
:j
exit

http://files.filefront.com/Descomprimir ... einfo.html