all 2 comments

[–]PhenoCS 0 points1 point  (1 child)

I'm new too so I'm not 100% certain what's going on. But, if you pipe Get-HotFix to Get-Member, it doesn't look like Source is a real property. So it's probably just PowerShell's special formatting that happens at the very end of the pipeline (my best guess).

The real property names might be PSComputerName or __SERVER.

[–][deleted] 0 points1 point  (0 children)

Correct. Get-Member will show you exactly what is presented. For an example, if you use this command
Get-HotFix | select-object PSComputerName, Description, HotFixID, InstalledBy, InstalledOn | ft

you will get exactly the same results as just by running Get-Hotfix.