Update Boot Image with CU Article 9

This commit is contained in:
Frank Rojas 2023-07-26 17:01:41 -04:00
parent 9700779cf2
commit 26529560e5

View File

@ -7,7 +7,7 @@ author: frankroj
manager: aaroncz
ms.author: frankroj
ms.topic: article
ms.date: 07/13/2023
ms.date: 07/26/2023
ms.technology: itpro-deploy
appliesto:
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
@ -92,12 +92,16 @@ Note about Windows Server 2012 R2
- Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`.
#### [**Intune**](#tab/powershell)
```powershell
Mount-WindowsImage -Path "<Mount_folder_path>" -ImagePath "<Boot_image_path>\<boot_image>.wim" -Index 1 -Verbose
```
For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage)
#### [**Intune**](#tab/cmd)
```cmd
DISM.exe /Mount-image /imagefile:"<Boot_image_path>" /Index:1 /MountDir:"<Mount_folder_path>"
```