发新话题
打印

如何实现让ezboot盘,也可以出现Press any key to boot from CD. .

实现关机功能

可以这样搞定取光盘的问题:首先有dos启动镜像,里面必有几个文件shutdown.com(关机文件),xmsdsk.exe(虚拟磁盘工具.编辑
autoexec.bat,加入
xmsdsk 1024 b:
copy a:\shutdown.com b:
echo "Please take out the cd,then press any key to turn off your computer"
pause
shutdown -s

上面原理为,创建虚拟磁盘,拷贝关机文件到虚拟磁盘,反正dos系统已调入内存中,故此时取出光盘也不影响关机文件的正常执行

TOP

发新话题