PSWindowsUpdate icon indicating copy to clipboard operation
PSWindowsUpdate copied to clipboard

This module contain cmdlets to manage Windows Update Client.

Results 53 PSWindowsUpdate issues
Sort by recently updated
recently updated
newest added

The Parameter -DeploymentAction should not only accept "Installation;Uninstallation" but all possible values. The possible values are defined here: https://learn.microsoft.com/en-us/windows/win32/api/wuapi/ne-wuapi-deploymentaction `0 = None` `1 = Installation` `2 = Uninstallation` `3 =...

On PowerShell 5.1, if I call Get-WUHistory after calling Start-Transcript, when executing Stop-Transcript, it shows the Transcript has already been terminated. This simple script will validate the issue ``` Start-Transcript...

Any time I try to use Set-PSWUSettings -SendReport -SmtpServer 'smtp-relay.gmail.com', I get the below error: ``` Set-PSWUSettings : Missing SmtpServer; Use -PSWUSettings or declare PSWUSettings.xml in ModuleBase path. At X:\Scripts\PowerShell\Test-PSWUSettings.ps1:17...

``` $WUJobSplat = @{ TaskName = "PSWindowsUpdate" Confirm = $False Verbose = $True Script = 'Import-Module PSWindowsUpdate; Install-WindowsUpdate -AcceptAll -NotCategory "Drivers" -IgnoreReboot' } If ($TriggerDate -eq "Now") { $WUJobSplat.Add("RunNow", "1")...

If I've used Set-WUSettings to set a target feature release and other info, how do I unset it? Trying to get the setting consistent across machines and I'd like to...

How do you install updates that are already downloaded?

``` PS C:\Users\Naworz> Restart-Service wuauserv PS C:\Users\Naworz> Install-Module PSWindowsUpdate Untrusted repository You are installing the modules from an untrusted repository. If you trust this repository, change its InstallationPolicy value by...

Hello, are you able to sign the script/files with a proper Microsoft Certificate since it's being used in production DevBox? /BR

When retrieving Windows Update metadata, the reported Size value for certain KBs is grossly inaccurate. For example, the latest Windows 11 update KB5058411 is being reported as 89 GB, which...

I assume Get-WUUninstall is deprecated, or maybe just wrong. Replaced it with correct command.