From 0282239ebb9c0251c6cd8e4bc61e9f3f362117bd Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 17:08:00 -0400 Subject: [PATCH] Update Boot Image with CU Article 37 --- windows/deployment/update-boot-image.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index fa75b5b81c..e4332db38c 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -140,10 +140,9 @@ From an elevated **PowerShell** command prompt, run the following command to add ```powershell Add-WindowsDriver -Path "" -Driver "\.inf" -Example: - -Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" +# Example: +# Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" ``` or @@ -202,6 +201,12 @@ Drivers are not affected by the cumulative update installed later in this walkth Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose ``` + **Example**: + + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" -Path "C:\Mount" -Verbose + ``` + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage).