Add 2004 / 20H1 / 19041 to Windows version overview

This commit is contained in:
Disassembler
2020-03-31 13:48:49 +02:00
parent e3fa432605
commit ffacb062b8
2 changed files with 3 additions and 2 deletions

View File

@@ -84,6 +84,7 @@ The script supports command line options and parameters which can help you custo
| 1809 | Redstone 5 (RS5) | October 2018 Update | 17763 |
| 1903 | 19H1 | May 2019 Update | 18362 |
| 1909 | 19H2 | November 2019 Update | 18363 |
| 2004 | 20H1 | TBA | 19041 |
 

View File

@@ -3518,13 +3518,13 @@ Function AddFaxPrinter {
Add-Printer -Name "Fax" -DriverName "Microsoft Shared Fax Driver" -PortName "SHRFAX:" -ErrorAction SilentlyContinue
}
# Uninstall Windows Fax and Scan Services - Not applicable to Server
# Uninstall Windows Fax and Scan Services - Not applicable since 2004. Not applicable to Server
Function UninstallFaxAndScan {
Write-Output "Uninstalling Windows Fax and Scan Services..."
Disable-WindowsOptionalFeature -Online -FeatureName "FaxServicesClientPackage" -NoRestart -WarningAction SilentlyContinue | Out-Null
}
# Install Windows Fax and Scan Services - Not applicable to Server
# Install Windows Fax and Scan Services - Not applicable since 2004. Not applicable to Server
Function InstallFaxAndScan {
Write-Output "Installing Windows Fax and Scan Services..."
Enable-WindowsOptionalFeature -Online -FeatureName "FaxServicesClientPackage" -NoRestart -WarningAction SilentlyContinue | Out-Null