Created
December 23, 2019 19:04
-
-
Save AspenForester/336637ef851c37c2ed904cda1928a118 to your computer and use it in GitHub Desktop.
Thoughts for Brandon Mac
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Computers = $env:COMPUTERNAME | |
$sccm = Foreach ($computer in $Computers) | |
{ | |
If (Test-Connection -ComputerName $Computer -count 1 -Quiet) | |
{ | |
Get-WmiObject -Class CCM_SoftwareUpdate -Filter ComplianceState=0 -Namespace root\CCM\ClientSDK -Computername $Computer | | |
Select-object @{N='Computername';E={$_.PSComputerName}},ArticleID,Name, URL | |
} | |
} | |
$sccm | |
$sccm | Out-Gridview | |
$sccm | export-csv -path c:\temp\sccm.csv -notypeinfo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment