Dism命令常用方法

制作一个可以在PE环境下独立运行的dism包

1、安装对应版本的windows ADK;

2、打开开始菜单,找到“部署和映像工具环境”,右键以管理员身份运行;

3、不要更改当前的目录,执行 CopyDandI.cmd amd64 E:\dism;

现在就可以把e:\dism的内容拷贝到其他地方使用了。

捕获镜像

dism /capture-image /imagefile:win10_audit.wim /capturedir:c: /name:"win10_ent_wps" /compress:max

compress这个压缩选项是可选的,我们发布镜像时,通常选择最大压缩,使得文件小一些。

挂载镜像

DISM /Mount-image /imagefile:boot.wim /Index:1 /MountDir:mount

获取镜像信息

dism /get-imageinfo /imagefile:boot.wim

卸载镜像

Dism /Unmount-image /MountDir:mount /Commit

如需放弃更改,将commit更改为discard

应用/安装镜像

dism /Apply-Image /ImageFile:install.wim /Index:1 /ApplyDir:c:

镜像合并

dism /append-image /sourceimagefile:install.wim /sourceindex:1 /destinationimagefile:windows_10_enterprise.wim

镜像合并的好处是,在一个镜像文件中存储多个镜像,文件大小大大降低