PowerShell: Get Property Values
Show Property Values of a Object
Show all properties and their values of a object
Get-Date | select -Property *
dir -file | select -First 1 | select -Property *
Show all properties and their values of a object
Get-Date | select -Property *
dir -file | select -First 1 | select -Property *