|
这个是再网上看见的dos工具箱的安装bat文件。我怎么写ini信息卸载都不对,帮我弄一个好吗?
或者是帮我改下,现在的问题是修改ISO文件后,再执行下面的bat的时候原来的ISO文件并没有更新(覆盖)和其他文件啊。(红色部分)
@echo off
set bootp=C:\
if not exist %bootp%boot.sys (
bootcfg /timeout 20
attrib -r -h -s -a %bootp%boot.ini
echo %bootp%ieldr="江民 kvDOS 杀毒伴侣">> %bootp%boot.ini
copy %bootp%boot.ini %bootp%boot.sys
bootcfg /default /id 2
attrib -r -h -s -a %bootp%boot.ini
copy %bootp%boot.ini %bootp%boot.dos )
if exist %bootp%boot.dos (
attrib -r -h -s -a %bootp%boot.ini
del %bootp%boot.ini /q
attrib -r -h -s -a %bootp%boot.dos
copy %bootp%boot.dos %bootp%boot.ini )
if exist %bootp%boot goto boot
:boot
attrib -r -h -s -a %bootp%boot
del %bootp%boot /q
:end
attrib +r +h +s +a %bootp%boot
attrib +r +h +s +a %bootp%boot.ini
attrib +r +h +s +a %bootp%boot.sys
attrib +r +h +s +a %bootp%boot.dos
attrib +r +h +s +a %bootp%Boot.iso
attrib +r +h +s +a %bootp%Boot.bat
attrib +r +h +s +a %bootp%ieldr
attrib +r +h +s +a %bootp%isoemu.ini |
|