如何从 Windows 10 专业版安装文件中获取 install.wim

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/33862619/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-08 19:21:46  来源:igfitidea点击:

How to get install.wim from windows 10 pro installation file

windowsdeployment

提问by Abdul Rauf

I am currently learning windows 10 deploy. I have Microsoft Deployment toolkit update 2013 update 1 installed. When I try to import operating system, system tell me can not find install.wim in windows sources. I did some research found out that current windows 10 home/pro installation media comes with install.esd instead install.wim. Is there anyone know to to extract install.wim from install.esd. I have looked at few ways online, none of them working.

我目前正在学习 Windows 10 部署。我安装了 Microsoft 部署工具包更新 2013 更新 1。当我尝试导入操作系统时,系统告诉我在 windows 源中找不到 install.wim。我做了一些研究,发现当前的 Windows 10 家庭版/专业版安装媒体带有 install.esd 而不是 install.wim。有没有人知道从 install.esd 中提取 install.wim。我在网上看了几种方法,都没有奏效。

回答by Abdul Rauf

You can easily convert install.esd to install.wim using ESD2WIM-WIM2ESD.cmd

您可以使用ESD2WIM-WIM2ESD.cmd轻松将 install.esd 转换为 install.wim

  1. Run it as Administrator
  2. Enter location of install.esd
  3. Type 1 and it will start converting
  4. Once that is done you should see the completed install.wim in the same directory in which this cmd utility is located
  1. 以管理员身份运行
  2. 输入 install.esd 的位置
  3. 输入 1 它将开始转换
  4. 完成后,您应该会在此 cmd 实用程序所在的同一目录中看到已完成的 install.wim

Reference: http://markthetech.com/how-to-convert-install-esd-to-install-wim/

参考:http: //markthetech.com/how-to-convert-install-esd-to-install-wim/

回答by WinOutreach2

You can get the WIM file from any media other than the Media Creation Tool download (or Windows Update). You could also use the Media Creation Tool installation media on a virtual machine and then Sysprep and capture from that VM.

您可以从媒体创建工具下载(或 Windows 更新)以外的任何媒体获取 WIM 文件。您还可以在虚拟机上使用媒体创建工具安装媒体,然后从该虚拟机进行 Sysprep 和捕获。

Media downloaded from MSDN or VLSC will contain a WIM and have no issues with MDT.

从 MSDN 或 VLSC 下载的媒体将包含 WIM,并且没有 MDT 问题。

回答by shafoss

You can use dism to convert the install.esd from the Media Creation Tool to an install.wim.

您可以使用 dism 将 install.esd 从媒体创建工具转换为 install.wim。

dism /export-image /sourceimagefile:c:\path\to\install.esd /destinationimagefile:c:\path\to\install.wim /compress:max /checkintegrity

The install.esd file could contain a few different versions of windows, so you may need the source index for this to work. To find the appropriate index, run:

install.esd 文件可能包含几个不同版本的 Windows,因此您可能需要源索引才能使其工作。要查找适当的索引,请运行:

dism /get-wiminfo /wimfile:c:\path\to\install.esd

Then add the /sourceindex:# for the version of window you need:

然后为您需要的窗口版本添加 /sourceindex:# :

dism /export-image /sourceimagefile:c:\path\to\install.esd /sourceindex:6 /destinationimagefile:c:\path\to\install.wim /compress:max /checkintegrity

回答by mevdschee

You can download the official Windows 10 ISO image from Microsoft by visiting:

您可以通过访问以下网址从 Microsoft 下载官方 Windows 10 ISO 映像:

https://www.microsoft.com/en-us/software-download/windows10ISO

https://www.microsoft.com/en-us/software-download/windows10ISO

But you must be on Linux (or pretend to be using user agent switcher) to download the file.

但是您必须在 Linux 上(或假装使用用户代理切换器)才能下载该文件。

The install file is an ISO file and it contains theinstall.wimfile you are looking for.

安装文件是一个 ISO 文件,它包含install.wim您要查找的文件。

Source: tqdev.com

来源:tqdev.com