|
原帖由 snaketsg 于 2009-9-14 15:36 发表
一般SetupComplete.cmd存在于安装盘的\sources\$OEM$\$$\SETUP\SCRIPTS目录中,你上面的“if exist %installpath%\WINDOWS\Setup\Scripts\SetupComplete.cmd“这条语句判断的是安装目标分区上有没有”Set ...
刚才看了一下waik的说明,\sources\$OEM$好像是安装程序要自动复制的一些文件,这还是很好处理的,如果没问题,我将用加入下面的代码
- if exist "%Wimdir%\$OEM$" (
- xcopy /shey "%Wimdir%\$OEM$\$1" %installpath% >NUL
- xcopy /shey "%Wimdir%\$OEM$\$$" %installpath%\WINDOWS >NUL
- )
复制代码
其中%Wimdir%为install.wim所在文件夹,比如f:\sources |
|