Ich erstelle eine Liste von installierter Software die nicht von Microsoft ist um nach Updates und Vulnerabilities zu suchen die nicht von WSUS abgedeckt werden weil WSUS ja nur Microsoft Updates bereitstellt.
Get-WmiObject -Class Win32_Product | Where-Object { $_.Vendor -notmatch "Microsoft" }
Kann ich in Powershell irgendwie nach Updates bzw. Vulnerabilities für diese 3rd Party Software suchen?