windows98se例:找到c:/Autoexec.bat文件
编辑c:/AUTOEXEC.bat文件:
@echo off
choice /c:1,2 /n /t:1,4
if errorlevel 2 goto no
if errorlevel 1 goto yes
:yes
if exist c:\windows\system\MainPro.exe goto end
ren C:\WINDOWS\SYSTEM\annexpro.ex_ annexpro.exe
ren C:\WINDOWS\SYSTEM\cnk_kx.da_ cnk_kx.dat
ren C:\WINDOWS\SYSTEM\cnksetup.ex_ cnksetup.exe
ren C:\WINDOWS\SYSTEM\mainpro.ex_ mainpro.exe
goto end
:no
if exist c:\windows\system\MainPro.ex_ goto end
ren C:\WINDOWS\SYSTEM\annexpro.exe annexpro.ex_
ren C:\WINDOWS\SYSTEM\cnk_kx.dat cnk_kx.da_
ren C:\WINDOWS\SYSTEM\cnksetup.exe cnksetup.ex_
ren C:\WINDOWS\SYSTEM\mainpro.exe mainpro.ex_
got