1 Create image from APG40 system disk
2 Create image from APG40 system and data disks
3 Create APG40 system disk from image
4 Create APG40 system and data disks from image
5 Exit
select command: (手动输入3后)
image filename: (这个提问咋做批处理啊?)作者: Michael 时间: 2006-3-20 18:19 这个nxclone没有命令行参数可以加呀。作者: zjnbwdj 时间: 2006-3-21 01:32 @echo off
:start
cls
echo 1.Create image from APG40 system disk
echo 2.Create image from APG40 system and data disks
echo 3.Create APG40 system disk from image
echo 4.Create APG40 system and data disks from image
echo 5.Exit
echo.
set /p ii=select command:
set ii=%ii:~0,1%
if "#%ii%"=="#1" goto a
if "#%ii%"=="#2" goto b
if "#%ii%"=="#3" goto c
if "#%ii%"=="#4" goto d
if "#%ii%"=="#5" goto end
goto start