WindowsUpdate.ps1 332 B

123456789101112131415
  1. foreach ($module in @("PSWindowsUpdate")){
  2. if (-not (Get-Module -ListAvailable -Name $module)) {
  3. Install-Module $module -Scope CurrentUser
  4. }
  5. if (-not (Get-Module $module)) {
  6. Import-Module $module
  7. }
  8. }
  9. Get-WindowsUpdate
  10. # Get-WindowsUpdate -KBArticleID "KB4592449" -Install
  11. # Install-WindowsUpdate