[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[其他] 一个模拟蓝屏代码的疑问

  1. @echo off
  2. echo exit |%ComSpec% /k prompt e 100 B4 00 B0 12 CD 10 B0 03 CD 10 CD 20 $_g$_q$_ |debug >nul
  3. chcp 437 >nul
  4. graftabl 936 >nul
  5. color 1f
  6. echo A Problem has been detected and windows has been shut down to prevent damage to your computer  
  7. echo TRQT_NOT_LESS_OR_EQUAL  
  8. echo If this is the first time you've seen this stop error scren,restart your computer.if this screen appears again , follow these steps:  
  9. echo check tomake sure any new hardware or software is proper ly installed . if this is a new installtion,ask your hardware or software manufacturer for any windows updates you might need.  
  10. echo if pqoblems continue ,disable or remove any newly installed hardware or software .disable BIOS memory options such as caching or shadowing .if you need to use safemode to remove or disable components,restart your computer,press F8 toselect advanced startup options ,and  
  11. echo then select safe mode.  
  12. echo technical information:  
  13. echo ***stop :0*0000000d1(0*00000000,0*00000002,0*00000001,0*f7778a88)  
  14. echo pCIIDEX.SYS- ADDRESS f7778a88 BASE AT f7778000,DATASTAMP 41107B4C。
  15. :goby
  16. goto goby  
复制代码
有没有办法让自动加到启动项里面??
还有有没有办法弄成输入特定字符才会退出的?不是那种明文显示的

  1. rem 添加开机自启动项
  2. reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MyRun /t REG_SZ /d "C:\test\a.bat" /f
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

dir "%homepath%\「开始」菜单\程序\启动\%~nx0" >nul 2>nul||copy %0 "%homepath%\「开始」菜单\程序\启动\%~nx0" >nul 2>nul
心绪平和,眼藏静谧。

TOP

返回列表