应该怎么做??怎么样做集成驱动的光盘?
lucky0504 你好啊, 你说的
hotfixes.cmd是完成打补丁工作的批处理,此任务个人比较趋向用Cmdlines.txt来调用,当然也可以像applications.cmd那样如法炮制。Cmdlines.txt的方法是建立一个文本文档起名为Cmdlines.txt。内容如下:
[COMMANDS]
".\Ie6.bat"
".\DirectX.bat"
".\hotfixs.bat"
是什么意思 啊 我记得你以前发过
--------------------------------------------------------------------------------
winnt.sif
[Data]
AutoPartition=0
Unattendmode=Yes
MSDosInitiated="0"
[Unattended]
UnattendMode=FullUnattended
OemSkipEula=Yes
OemPreinstall=Yes
TargetPath=\WINNT
FileSystem=Ignore
Repartition=No
OEMPnPDriversPath="Install\Drivers\VIA;install\Drivers\Intel;Install\Drivers\Video;install\Drivers\Audio;install\Drivers\Audio\CMI8738;install\Drivers\Lan;install\Drivers\Monitor;install\Drivers\Print\EPSON680;install\Drivers\Print\Bjc1ksp"
DriverSigningPolicy=Ignore
[GuiUnattended]
OemSkipWelcome=1
adminpassword=*
OEMSkipRegional=1
TimeZone=210
Autologon=Yes
AutoLogonCount=1
NoWaitAfterTextMode="1"
NoWaitAfterGUIMode="1"
[UserData]
FullName="lucky"
OrgName="snake"
ComputerName="lucky"
ProductID="PQHKR-G4JFW-VTY3P-G4WQ2-88CTW"
[Display]
BitsPerPel=16
Xresolution=800
YResolution=600
Vrefresh=85
[TapiLocation]
CountryCode=86
[RegionalSettings]
LanguageGroup=10
[FavoritesEx]
Title1="刻录家园论坛.url"
URL1="http://www.ultraiso.com/cgi-bin/leoboard.cgi"
Title2="百度搜索引擎.url"
URL2="http://www.baidu.com"
Title3="Google.url"
URL3="http://www.google.com/"
[Branding]
BrandIEUsingUnattended=Yes
[URL]
Home_Page=http://www.microsoft.com/windows/ie_intl/cn/start/
[Proxy]
Proxy_Enable=0
Use_Same_Proxy=1
[Identification]
JoinWorkgroup=WORKGROUP
[Networking]
InstallDefaultComponents=Yes
[GuiRunOnce]
%systemdrive%\install\applications.cmd
cmdline.txt
[COMMANDS]
".\Ie6.bat"
".\DirectX.bat"
".\hotfixs.bat"
Applications.cmd
@echo off
ECHO.
ECHO 接下来的几分钟里,你将会看到脚本程序自动给你安装常用的软件。
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"
DEL "%systemdrive%\Documents and Settings\All Users\「开始」菜单\*.lnk" >nul
ECHO.
ECHO Installing WinRAR 3.20
ECHO Please wait...
start /wait %systemdrive%\install\Applications\winrar.exe /S
ECHO.
ECHO 注册 WinRAR 3.20
ECHO Please wait...
COPY "%systemdrive%\Install\Applications\Rarreg.key" "%systemdrive%\Program Files\WinRAR\"
ECHO.
ECHO Installing Windows Media Player 9
ECHO Please wait...
start /wait %systemdrive%\install\Applications\Mpsetup.EXE /Q:A /R:N
ECHO.
ECHO Installing Flashget 1.4
ECHO 请稍等...
start /wait %systemdrive%\install\Applications\fg140.exe /S
ECHO.
ECHO 注册 Flashget 1.4
ECHO Please wait...
COPY "%systemdrive%\Install\Applications\flashget.exe" "%systemdrive%\Program Files\FlashGet\"
ECHO.
ECHO Installing Office 2000 迷你版
ECHO 请稍等...
start /wait %systemdrive%\install\Applications\setup.exe
ECHO.
ECHO 安装系统安全补丁,请等待....
ECHO Installing Q813951...
start /wait %systemdrive%\install\Hotfixes\q813951.exe /Q:A /R:N
ECHO.
ECHO Installing Q831167...
start /wait %systemdrive%\install\Hotfixes\Q831167.exe /Q:A /R:N
ECHO.
ECHO Installing Q330994...
start /wait %systemdrive%\install\Hotfixes\q330994.exe /Q:A /R:N
ECHO.
ECHO Installing Js56nchs...
start /wait %systemdrive%\install\Hotfixes\js56nchs.exe /Q:A /R:N
ECHO.
ECHO Installing WM320920_64...
start /wait %systemdrive%\install\Hotfixes\wm320920_64.exe /Q:A /R:N
ECHO.
ECHO Installing Q832894...
start /wait %systemdrive%\install\Hotfixes\Q832894.exe /Q:A /R:N
ECHO.
ECHO Installing WindowsMedia9-KB819639-x86-ENU...
start /wait %systemdrive%\install\Hotfixes\WindowsMedia9-KB819639-x86-ENU.exe /Q:A /R:N
ECHO.
ECHO 删除安装过程中的临时文件...
ECHO.
RD /S /Q %systemdrive%\install
ECHO.
Exit
是不是说这样就可以把这些批处理文件都 写入winnt.sif就可以了, 不用分另三个????