问题描述
我有一个UnAttended Answer文件,如果使用基本上如下的UFD方法,效果很好:
I have an UnAttended Answer File and it works great if use the UFD method which is basically as follow:
1。创建可启动的UFD
1. Create a bootable UFD
2。 ICE->工具 - >创建媒体 - >从答案文件创建IBW图像
2. ICE->Tools->Create Media->Create IBW Image from Answer File
3。将生成的整个目录(例如C:\ BooterIBWImage)从上面复制到USB驱动器的根目录。
3. Copy the entire directory generated (say C:\BootableIBWImage) from above to the root of the USB drive.
现在我想基于上述步骤制作无人值守的DVD ISO映像UFD。以下是我所做的步骤:
Now I want to make an unattended DVD ISO image based on the above steps instead of UFD. Here are the steps that I did:
1。 copype.cmd x86 C:\ BootootCDImage
1. copype.cmd x86 C:\BootableCDImage
2。 xcopy / Y / E C:\ BootingIBWImage \ *。* C:\ BootootCDImage\ISO \
2. xcopy /Y /E C:\BootableIBWImage\*.* C:\BootableCDImage\ISO\
3。 oscdimg -m -n -bC:\ BootootCDImage\etfsboot.com C:\ BootootCDImage\ISO C:\ BootootCDImage \ MySO.iso
3. oscdimg -m -n -bC:\BootableCDImage\etfsboot.com C:\BootableCDImage\ISO C:\BootableCDImage\MyISO.iso
现在烧毁ISO后当我在目标设备上启动DVD时,在DVD上,安装失败的时候它会显示"安装功能和更新"。我在setuperr.log中得到的错误是:
Now after burning the ISO on a DVD when I boot the DVD on the target device, the installation fails around the time when it says "Installing Features and Updates" and the error I get in setuperr.log is:
2010-08-09 19:45:47,错误 [0x060766] IBS ApplyCbsPackagesAndSettingsFromUnattendFile:DISM返回错误退出代码5
2010-08-09 19:45:47,错误 [0x06076d] IBS ApplyCbsPackagesAndSettingsFromUnattendFile:有关详细信息,请参阅DISM日志文件[C:\ $ WINDOWS .~BT\Sources\Panther\cbs_unattend.log]。
2010-08-09 19:45:47 ,错误 [0x060768] IBS ApplyCbsPackagesAndSettingsFromUnattendFile:无法使用DISM安装包并应用设置。错误代码= 0x80070005
2010-08-09 19:45:47, Error [0x060766] IBS ApplyCbsPackagesAndSettingsFromUnattendFile: DISM returned error exit code 5
2010-08-09 19:45:47, Error [0x06076d] IBS ApplyCbsPackagesAndSettingsFromUnattendFile: See DISM log file [C:\$WINDOWS.~BT\Sources\Panther\cbs_unattend.log] for more details.
2010-08-09 19:45:47, Error [0x060768] IBS ApplyCbsPackagesAndSettingsFromUnattendFile: Failed to use DISM to install packages and apply settings. Error code = 0x80070005
所以我的问题是:
1。首先,是否真的可以像UFD一样创建无人值守的IBW DVD?
1. First of all is it really possible to create an unattended IBW DVD just like UFD?
2。如果是,那么我做错了什么?
2. If yes, then what am I doing wrong?
如果您希望我发送我的Panther目录,请告诉我。
Please let me know if you want me to send my Panther directory.
推荐答案
或者,您可以使用\ISO创建一个单独的文件夹并将IBW文件转储到那里。问题是你最有可能将IBW和WinPE文件混合在一起,而且出了问题。请注意,如果你在ISO方法下使用子文件夹,你需要
从WinPE命令提示符手动启动setup.exe进入IBW,而如果直接在你的IBW文件夹上执行oscdimg,你会创建一个直接引导到IBW的ISO。
Alternately you can make a separate folder with \ISO and dump your IBW files there. The problem is that you're most likely mixing IBW and WinPE file together, and something's going wrong. Note that if you take the subfolder under ISO approach, you'll need to manually launch setup.exe from the WinPE command prompt to go into IBW, whereas if you do the oscdimg directly on your IBW folder, you'll be creating an ISO that boots directly into IBW.
这篇关于创建可启动的自定义IBW DVD时出现DISM错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!