[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
正直的BAT模拟蓝屏程序:
  1. @echo off
  2. if not "%1"=="" goto bluescreen
  3. reg add hkcu\console\ /v fullscreen /t REG_DWORD /d 1 /f>nul
  4. start "" %0 fullscreen
  5. exit
  6. :bluescreen
  7. color 1f
  8. echo.&echo.&echo.&echo.
  9. echo                                 Windows
  10. echo.
  11. echo      A fatal exception 0E has occurred at 0028:C0011E36 in VXD VMM(01) +
  12. echo     00010E36. The current application will be terminated.
  13. echo.
  14. echo      *  Press any key to terminate the current application.
  15. echo      *  Press CTRL+ALT+DEL again to restart your computer. You will
  16. echo         lose any unsaved information in all applications.
  17. echo.   
  18. set /p=                       Press any key to continue
  19. pause>nul
  20. reg add hkcu\console\ /v fullscreen /t REG_DWORD /d 0 /f>nul
  21. exit
复制代码

TOP

返回列表