6 lines
259 B
PowerShell
6 lines
259 B
PowerShell
function UpdateWindows {
|
|
Disable-WindowsOptionalFeature -online -NoRestart -FeatureName internet-explorer-optional-amd64
|
|
Install-Module -Name PSWindowsUpdate -Force
|
|
Get-WindowsUpdate -ForceInstall
|
|
Install-WindowsUpdate -AcceptAll -AutoReboot
|
|
} |