Skip to content

Instantly share code, notes, and snippets.

@janikvonrotz
Created March 12, 2014 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janikvonrotz/9506137 to your computer and use it in GitHub Desktop.
Save janikvonrotz/9506137 to your computer and use it in GitHub Desktop.
PowerShell: Compate All Object Properties #PowerShell
$X | Get-Member -MemberType Property | Select-Object -ExpandProperty Name | %{
Compare-Object $X $Y -Property "$_" | Format-Table -AutoSize
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment