Update Boot Image with CU Article 37

This commit is contained in:
Frank Rojas
2023-08-01 17:08:00 -04:00
parent ddbe00600b
commit 0282239ebb

View File

@ -140,10 +140,9 @@ From an elevated **PowerShell** command prompt, run the following command to add
```powershell
Add-WindowsDriver -Path "<Mount_folder_path>" -Driver "<Driver_INF_source_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\<Component>.cab" -Path "<Mount_folder_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).