diff --git a/windows/deployment/images/icons/command-line-18.svg b/windows/deployment/images/icons/command-line-18.svg index 5f434b70ba..7e1f7de9c2 100644 --- a/windows/deployment/images/icons/command-line-18.svg +++ b/windows/deployment/images/icons/command-line-18.svg @@ -1,3 +1,90 @@ - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/windows/deployment/images/icons/powershell-18.svg b/windows/deployment/images/icons/powershell-18.svg index 734d3930b1..ab2d5152ca 100644 --- a/windows/deployment/images/icons/powershell-18.svg +++ b/windows/deployment/images/icons/powershell-18.svg @@ -1,3 +1,20 @@ - - + + + + + + + + + + MsPortalFx.base.images-10 + + + + + + + + + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-color-18.svg b/windows/deployment/images/icons/powershell-color-18.svg deleted file mode 100644 index ab2d5152ca..0000000000 --- a/windows/deployment/images/icons/powershell-color-18.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - MsPortalFx.base.images-10 - - - - - - - - - - \ No newline at end of file diff --git a/windows/deployment/images/icons/terminal-18.svg b/windows/deployment/images/icons/terminal-18.svg deleted file mode 100644 index 7e1f7de9c2..0000000000 --- a/windows/deployment/images/icons/terminal-18.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 35877dc61e..78948fb9ee 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -111,7 +111,7 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w If needed, add any drivers to the boot image: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Command to be determined @@ -141,7 +141,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows 1. Add any desired optional components to the boot image: - ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose @@ -169,7 +169,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows For example, for English United States (en-us), add the following: - ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose @@ -208,7 +208,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "" -Path "" -Verbose @@ -234,7 +234,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h Copy the updated bootmgr files from the updated boot image to the ADK installation path: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force @@ -256,7 +256,7 @@ This step doesn't update or change the boot image. However, it makes sure that t Run **DISM.exe** commands that will clean up the mounted image and help reduce its size: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile @@ -280,7 +280,7 @@ For more information, see [Modify a Windows image using DISM: Reduce the size of After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Get-WindowsPackage -Path "" @@ -302,7 +302,7 @@ For more information, see [DISM Operating System Package (.cab or .msu) Servicin Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Dismount-WindowsImage -Path "" -Save -Verbose @@ -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: - ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose