This PowerShell script will return the Machine name and Client version for all machines that are SMS client machines on the SMS site server that is specified.
Note: Be sure to change XXX to your three letter site code and change SiteServerName to your SMS site server name.
PS1 Script:
Gwmi -Name Root\SMS\Site_XXX -cl SMS_R_System -Comp SiteServerName |
Where {$_.Client -eq "1"} |
Select Name, ClientVersion |
Sort Name
No Comments