以下是简单记录一下如何使用windows的ADK工具制作PE系统。

首先是下载ADK的工具,百度一下ADK就可以找到下载地址。https://docs.microsoft.com/zh-cn/windows-hardware/get-started/adk-install

安装之后,打开Deployment and Imaging Tools Environment(或者叫做“部署和映像工具环境”)进入命令行环境。

输入

copype amd64 C:\WinPE_amd64

其中amd64是指的你选择制作64位的PE,后面的路径是你制作的PE盘内容文件的路径,路径是可以自定义的。


然后去挂载PE文件中的boot.wim文件,一般复制出来的PE路径中包含了一个mount文件,可以把boot.wim挂载到这个文件夹内。boot.wim一般在pe路径下\media\sources\boot.wim。

Dism /Mount-Image /ImageFile:"C:\WinPE_amd64\media\sources\boot.wim" /index:1 /MountDir:"C:\WinPE_amd64\mount"

(win7下的参数是)

dism /mount-wim /wimfile:"C:\WinPE_amd64\media\sources\boot.wim" /index:1 /MountDir:"C:\WinPE_amd64\mount"


卸载的命令是

Dism /Unmount-Image /MountDir:"C:\WinPE_amd64\mount" /Commit

修改mount文件夹里的内容会保存在boot.wim里。可以用/discard参数代替/commit,可以废弃对文件的更改。(为什么要这么做?)


在挂载的时候为PE添加驱动

dism /add-driver /Image:"C:\WinPE_amd64\mount" /Driver:"C:\SampleDriver\driver.inf"

添加驱动 - https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/winpe-add-drivers

DISM 驱动服务命令 - https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/dism-driver-servicing-command-line-options-s14


添加 Package/语言/额外组件/.cab 文件

Dism /Add-Package /Image:"C:\WinPE_amd64\mount" /PackagePath:"C:\Program Files\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-HTA.cab"


参考链接: 了解有效的额外组件和语言 - WinPE Add Packages (Optional Components 参考)https://docs.microsoft.com/enus/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference