AD group comparison - PowerShell - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:41:17Zhttp://stackoverflow.com/feeds/question/349822http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/349822/ad-group-comparison-powershell2AD group comparison - PowerShellunknown (google)2008-12-08T15:12:52Z2008-12-08T18:52:51Z
<p>When using the following function (compare 2 user's group membership), I get results that do not make sense.</p>
<p>function Compare-ADUserGroups <br>
{ #requires -pssnapin Quest.ActiveRoles.ADManagement </p>
<pre><code>param (
[string] $FirstUser = $(Throw "logonname required."),
[string] $SecondUser = $(Throw "logonname required.")
)
$a = (Get-QADUser $FirstUser).MemberOf
$b = (Get-QADUser $SecondUser).MemberOf
$c = Compare-Object -referenceObject $a -differenceObject $b
$c | Sort-Object InputObject
</code></pre>
<p>}</p>
<p>When I call this (Compare-ADUserGroups User1 User2), I get a result set similar to the following:</p>
<ul>
<li>CN=[All Users],OU=adm,DC=OSUMC,DC=EDU <=</li>
<li>CN=[All Users],OU=adm,DC=OSUMC,DC=EDU =></li>
<li>CN=Extended Users,OU=MSG,DC=OSUMC,DC=EDU <=</li>
<li>CN=Extended Users,OU=MSG,DC=OSUMC,DC=EDU =></li>
<li>CN=LCS2005,OU=Distribution Lists,DC=OSUMC,DC=EDU <=</li>
<li>CN=LCS2005,OU=Distribution Lists,DC=OSUMC,DC=EDU =></li>
</ul>
<p>I would expect these to not show given that they are equal and I am not using the -IncludeEqual parameter. Any ideas on why these are showing up?</p>
http://stackoverflow.com/questions/349822/ad-group-comparison-powershell/350460#3504601Answer by Don Jones for AD group comparison - PowerShellDon Jones2008-12-08T18:52:51Z2008-12-08T18:52:51Z<p>There's <em>something</em> in them which is throwing off the comparison. You'll see something similar if you run...</p>
<p>get-process | export-clixml c\procs.xml
Diff (get-process) (import-clixml c:\procs.xml)</p>
<p>Because SOME properties of those objects - things like VM and PM, for example, change in the brief interval between the two Get-Process runs. So it's possible that you're running into something similar, where some properties between the two objects are differing. By default, Compare-Object looks at <em>every</em> property.</p>
<p>An alternative is to use the -property param of Compare-Object to just compare specific properties, rather than comparing the <em>entire</em> object. Compare-Object can definitely be a bit tricky in this regard, because of the way it works with object properties rather than simply working with text.</p>