diff --git a/windows/deployment/images/icons/command-prompt-18.svg b/windows/deployment/images/icons/command-line-18.svg
similarity index 100%
rename from windows/deployment/images/icons/command-prompt-18.svg
rename to windows/deployment/images/icons/command-line-18.svg
diff --git a/windows/deployment/images/icons/command-prompt-16.png b/windows/deployment/images/icons/command-prompt-16.png
deleted file mode 100644
index d3a5d0257c..0000000000
Binary files a/windows/deployment/images/icons/command-prompt-16.png and /dev/null differ
diff --git a/windows/deployment/images/icons/command-prompt-24.png b/windows/deployment/images/icons/command-prompt-24.png
deleted file mode 100644
index f5729faa7f..0000000000
Binary files a/windows/deployment/images/icons/command-prompt-24.png and /dev/null differ
diff --git a/windows/deployment/images/icons/command-prompt-32.png b/windows/deployment/images/icons/command-prompt-32.png
deleted file mode 100644
index 0d715e93fb..0000000000
Binary files a/windows/deployment/images/icons/command-prompt-32.png and /dev/null differ
diff --git a/windows/deployment/images/icons/command-prompt-org.svg b/windows/deployment/images/icons/command-prompt-org.svg
deleted file mode 100644
index c446f2976d..0000000000
--- a/windows/deployment/images/icons/command-prompt-org.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/windows/deployment/images/icons/powershell-16.png b/windows/deployment/images/icons/powershell-16.png
deleted file mode 100644
index 4ecfea8486..0000000000
Binary files a/windows/deployment/images/icons/powershell-16.png and /dev/null differ
diff --git a/windows/deployment/images/icons/powershell-24.png b/windows/deployment/images/icons/powershell-24.png
deleted file mode 100644
index 7c60d412ce..0000000000
Binary files a/windows/deployment/images/icons/powershell-24.png and /dev/null differ
diff --git a/windows/deployment/images/icons/powershell-32.png b/windows/deployment/images/icons/powershell-32.png
deleted file mode 100644
index c28fd8f833..0000000000
Binary files a/windows/deployment/images/icons/powershell-32.png and /dev/null differ
diff --git a/windows/deployment/images/icons/powershell-org.svg b/windows/deployment/images/icons/powershell-org.svg
deleted file mode 100644
index 7ea68cb8b0..0000000000
--- a/windows/deployment/images/icons/powershell-org.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/windows/deployment/images/icons/powershell.svg b/windows/deployment/images/icons/powershell.svg
deleted file mode 100644
index 7ea68cb8b0..0000000000
--- a/windows/deployment/images/icons/powershell.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
\ No newline at end of file
diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md
index 5356ec74a5..b621a07b4d 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-18.svg"::: **PowerShell**](#tab/powershell)
+### [:::image type="icon" source="images/icons/powershell-color-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:""
@@ -117,7 +117,7 @@ If needed, add any drivers to the boot image:
Command to be determined
```
-### [:::image type="icon" source="images/icons/command-prompt-18.svg"::: **Command Line**](#tab/command-line)
+### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Image:"" /Add-Driver /Driver:"\.inf"
@@ -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-16.png"::: **PowerShell**](#tab/powershell)
+ ### [:::image type="icon" source="images/icons/powershell-color-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
@@ -151,7 +151,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows
For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage).
- ### [:::image type="icon" source="images/icons/command-prompt-16.png"::: **Command Line**](#tab/command-line)
+ ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab"
@@ -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-24.png"::: **PowerShell**](#tab/powershell)
+ ### [:::image type="icon" source="images/icons/command-line-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
@@ -177,7 +177,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows
This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly.
- ### [:::image type="icon" source="images/icons/command-prompt-24.png"::: **Command Line**](#tab/command-line)
+ ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab"
@@ -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-32.png"::: **PowerShell**](#tab/powershell)
+### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell)
```powershell
Add-WindowsPackage -PackagePath "" -Path "" -Verbose
@@ -216,7 +216,7 @@ Add-WindowsPackage -PackagePath "" -Path "" /Add-Package /PackagePath:""
@@ -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:
-### [**PowerShell**](#tab/powershell)
+### [:::image type="icon" source="images/icons/powershell-color-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
@@ -242,7 +242,7 @@ Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (
Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force
```
-### [**Command Line**](#tab/command-line)
+### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
Command to be determined
@@ -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:
-### [**PowerShell**](#tab/powershell)
+### [:::image type="icon" source="images/icons/powershell-color-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
@@ -264,7 +264,7 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment
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" -Wait -LoadUserProfile
```
-### [**Command Line**](#tab/command-line)
+### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer
@@ -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:
-### [**PowerShell**](#tab/powershell)
+### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell)
```powershell
Get-WindowsPackage -Path ""
@@ -288,7 +288,7 @@ Get-WindowsPackage -Path ""
For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windowspackage).
-### [**Command Line**](#tab/command-line)
+### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Image:"" /Get-Packages
@@ -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.
-### [**PowerShell**](#tab/powershell)
+### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell)
```powershell
Dismount-WindowsImage -Path "" -Save -Verbose
@@ -310,7 +310,7 @@ Dismount-WindowsImage -Path "" -Save -Verbose
For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismount-windowsimage).
-### [**Command Line**](#tab/command-line)
+### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Unmount-Image /MountDir:"" /Commit
@@ -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:
- ### [**PowerShell**](#tab/powershell)
+ ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell)
```powershell
Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-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).
- ### [**Command Line**](#tab/command-line)
+ ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line)
```cmd
DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim"