|
DOS启动U盘的一段代码:
type %TEMP%\VOL.TXT|find /i "drive C"
if errorlevel 1 goto menu
echo 判断U盘文件 >%TEMP%\usb.sys
:menu
为什么type %TEMP%\VOL.TXT|find /i "drive C"条件不成立也在%TEMP%目录下生成u.sys文件?
type %TEMP%\VOL.TXT|find /i "drive C"
if errorlevel 1 goto menu
:usb-hdd
cls
call w.bat box (+white on +blue) @DOS.SCR:hd
cls
if errorlevel 100 goto end
if "%?%"=="1" goto menu
:menu
为什么type %TEMP%\VOL.TXT|find /i "drive C"条件不成立也跳转到:usb-hdd标签? |
|