以下是ghost的一个批处理文件ghost.bat的样本供参考[要运行的化还需要一些文件,如getch.exe ,DUSELDR.COM, DUSE.exe, Smartdrv.exe, mouse.com, Ghost.EXE等]
@echo off
echo.
echo.
echo ======== Symantec Norton Ghost 2003 ================
echo.
echo 1. Start Ghost with an USB Mouse Support
echo.
echo 2. Start Ghost with a PS/2 Mouse Support
echo.
echo 3. Start Ghost without any Mouse Support
echo.
echo 4. Return to DOS Command Prompt State
echo.
echo ======================================================
echo Please Select a Choice: [1,2,3,4]
getch.exe
echo.
if errorlevel 4 goto end
if errorlevel 3 goto nomouse
if errorlevel 2 goto ps2mouse
if errorlevel 1 goto usbmouse
:usbmouse
DUSELDR.COM DUSE.exe
Smartdrv.exe
Ghost.EXE
cd \
goto end
:ps2mouse
mouse.com
Smartdrv.exe
Ghost.EXE
cd \
goto end
:nomouse
Smartdrv.exe
Ghost.EXE
cd \
goto end
:end
exit
小弟不才,请高手指点,不胜感激! 作者: 齐云 时间: 2003-10-28 18:40 标题: 求助:如何在Dos下使用USB鼠标