Update Boot Image with CU Article 16

This commit is contained in:
Frank Rojas 2023-07-27 12:10:00 -04:00
parent f7815742f6
commit 59a9cb288e

View File

@ -324,7 +324,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag
1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it: 1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it:
# [**PowerShell**](#tab/powershell) ### [**PowerShell**](#tab/powershell)
```powershell ```powershell
Export-WindowsImage -SourceImagePath "<Boot_image_path>\<boot_image>.wim" -SourceIndex 1 -DestinationImagePath "<Boot_image_path>\<boot_image>-export.wim" -CompressionType max -Verbose Export-WindowsImage -SourceImagePath "<Boot_image_path>\<boot_image>.wim" -SourceIndex 1 -DestinationImagePath "<Boot_image_path>\<boot_image>-export.wim" -CompressionType max -Verbose
@ -332,7 +332,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag
For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage).
# [**Command Line**](#tab/command-line) ### [**Command Line**](#tab/command-line)
```cmd ```cmd
DISM.exe /Export-Image /SourceImageFile:"<Boot_image_path>\<boot_image>.wim" /SourceIndex:1 /DestinationImageFile:"<Boot_image_path>\<boot_image>-export.wim" DISM.exe /Export-Image /SourceImageFile:"<Boot_image_path>\<boot_image>.wim" /SourceIndex:1 /DestinationImageFile:"<Boot_image_path>\<boot_image>-export.wim"