|
[这个贴子最后由arcwayne在 2005/05/30 09:11pm 第 2 次编辑]
我在按照启动盘制作手册(1.8版)做2000无人值守盘
系统自动安装运行到Application.cmd后弹出了这个筐筐,

请问大侠,我的设置什么地方出了问题?
以下是我的Application.cmd文件:
@ECHO off
ECHO 系统正在进行最后的设置,大概要5-7分钟,这段时间内请不要最小化本窗口...
ECHO.
ECHO Installing Windows Media Player 9...
start /wait %systemdrive%\install\Applicat\WMP9.EXE /Q:A /R:N
ECHO.
ECHO Installing 329115...
start /wait %systemdrive%\install\UPDATES\329115.exe /Q /M /Z
ECHO.
ECHO Installing 819696...
start /wait %systemdrive%\install\UPDATES\819696.exe /Q /M /Z
ECHO.
ECHO Installing 834707...
start /wait %systemdrive%\install\UPDATES\834707.exe /Q /M /Z
ECHO.
ECHO Installing 887811...
start /wait %systemdrive%\install\UPDATES\887811.exe /Q /M /Z
ECHO.
ECHO 删除墙纸...
DEL "%systemroot%\Blue Lace 16.bmp"
DEL "%systemroot%\Coffee Bean.bmp"
DEL "%systemroot%\FeatherTexture.bmp"
DEL "%systemroot%\Gone Fishing.bmp"
DEL "%systemroot%\Greenstone.bmp"
DEL "%systemroot%\Prairie Wind.bmp"
DEL "%systemroot%\Rhododendron.bmp"
DEL "%systemroot%\River Sumida.bmp"
DEL "%systemroot%\Santa Fe Stucco.bmp"
DEL "%systemroot%\Soap Bubbles.bmp"
DEL "%systemroot%\Zapotec.bmp"
ECHO.
ECHO 删除屏幕保护...
DEL "%systemroot%\system32\scrnsave.scr"
DEL "%systemroot%\system32\ss3dfo.scr"
DEL "%systemroot%\system32\ssbezier.scr"
DEL "%systemroot%\system32\ssflwbox.scr"
DEL "%systemroot%\system32\ssmarque.scr"
DEL "%systemroot%\system32\ssmyst.scr"
DEL "%systemroot%\system32\sspipes.scr"
DEL "%systemroot%\system32\ssstars.scr"
DEL "%systemroot%\system32\sstext3d.scr"
ECHO.
ECHO 调整快捷方式...
DEL "%systemdrive%\Documents and Settings\All Users\「开始」菜单\设定程序访问和默认值.lnk"
ECHO.
ECHO 复制工具...
COPY "%systemdrive%\install\Applicat\msconfig.exe" "%systemroot%"
ECHO.
ECHO 优化系统...
start /wait /min REGEDIT /s "%systemdrive%\install\myReg.reg"
ECHO.
ECHO 删除安装过程中的临时文件...
ECHO.
RD /S /Q "%systemdrive%\install"
exit |
|