ÿþ<html> <head> <title>Get-ShowMbrs</title> </head> <body> <h1>Get-ShowMbrs</h1> <div>Recursivley enumerates local Windows and AD groups.</div> <h2> Syntax </h2> <code>Get-ShowMbrs [-group] &lt;String&gt; [&lt;CommonParameters&gt;]</code> <h2> Detailed Description </h2> <div> The Get-ShowMbrs function recursivley enumerates local Windows and AD groups. Similar to the NT Resource utility showmbrs.exe, except that Get-ShowMbrs provides fully recursive group enumeration. </div> <h2> Related Commands </h2> <div> * <a href='Get-ShowMbrs.htm'>Get-ShowMbrs</a><br/> </div> <h2> Parameters </h2> <table border='1'> <tr> <th>Name</th> <th>Description</th> <th>Required?</th> <th>Pipeline Input</th> <th>Default Value</th> </tr> <tr valign='top'> <td>group&nbsp;</td> <td>&nbsp;</td> <td>true&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> </table> <h2> Input Type </h2> <div>None You cannot pipe objects to Get-ShowMbrs.</div> <h2> Return Values </h2> <div>String Get-ShowMbrs returns a string object.</div> <h2> Examples </h2> <h3> EXAMPLE 1</h3> <pre>Get-ShowMbrs "$env:computername\Administrators"</pre> <div>This command outputs a list of all members of the local Administrators group. If the group contains AD members, these groups are also enumerated.</div> <h3> EXAMPLE 2</h3> <pre>Get-ShowMbrs "Consco\PayrollUsers"</pre> <div>This command outputs a list of all members of the AD group. If the group contains nested groups, these groups are also enumerated.</div> </body> </html>