由于版本无效,无法在System Image Manager中打开install.wim


0

我在我的PC上运行Windows 10 Pro 64bit,并为Windows 10安装了Windows ADK。当使用Windows系统映像管理器,并尝试加载其中的install.wim文件时,我收到以下错误消息:

在此输入图像描述

在日志中看起来像这样:

20:38 : This application requires version 10.0.10240.16384 of the Windows ADK.
Install this version to correct the problem
20:38 : 
20:38 : Error opening Windows image at D:\sources\install.wim.

20:38 : 
20:38 : System.ComponentModel.Win32Exception (0x80004005): An attempt was made to load a program with an incorrect format
   bij Microsoft.ComponentStudio.ComponentPlatformInterface.WimFileHandle..ctor(String wimPath)
   bij Microsoft.ComponentStudio.ComponentPlatformInterface.WimInfo..ctor(String wimPath)
   bij Microsoft.ComponentStudio.ComponentPlatformInterface.Cpi.OpenWim(String wimPath)
   bij Microsoft.ComponentStudio.ImagePicker.GetImageInfoFromPath(String path)
   bij Microsoft.ComponentStudio.ImagePicker.ValidateImageFileOrFolder(String fileOrFolder)

在做了一些研究之后,我找到了将我的ADK升级到错误消息中要求的版本的答案(16384)。

我可以在这里下载这个版本

检查我目前在SIM中的版本时,我注意到了10.0.10240.16384版本:

在此输入图像描述

如何从Windows 10安装磁盘将install.wim加载到SIM中,而不会出现任何错误?


看看这里的答案是否适合你
摩押

@Moab如我的问题中所述,我这样做了,当尝试使用正确版本的WIM打开文件时仍然会出现问题。
2015年

这里只测试每个OP请求。
暗影巫师

Answers:


1

我找到的解决方案在这里

从部署工具环境运行以下脚本

:: Rename the original install.wim file.
rename D:\sources\install.wim install.bak
:: Create an empty temporary directory.
mkdir D:\sources\dummy
:: Create a new install.wim file with dummy image.
dism.exe /Capture-Image /ImageFile:D:\sources\install.wim /CaptureDir:D:\sources\dummy /Name:dummy /Compress:Max
:: Export the first Windows image to the empty install.wim file.
dism.exe /Export-Image /SourceImageFile:D:\sources\install.bak /SourceIndex:1 /DestinationImageFile:D:\sources\install.wim /Compress:Max
:: Delete the first dummy index in install.wim
dism.exe /Delete-Image /ImageFile:D:\sources\install.wim /Index:1
:: Delete temporary directory.
rmdir D:\sources\dummy

现在您可以在WSIM中打开install.wim。

您还可以删除原始(install.bak)文件并使用oscdimg.exe创建可启动媒体


当WSIM要求使用我已经使用的ADK 10.0.14393.0版本时,这对我有所帮助。
Ben Voigt 2016年

0

尝试使用7Zip将install.esd解压缩到install.wim。

我曾尝试使用运行cmd行的DISM cmd作为管理员,但也得到“试图加载一个格式不正确的程序”。DISM日志文件只是略有帮助,我决定尝试7ZIP,这似乎现在对我有用。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.