Cannot see the members of the local group

Hi Readers, I was building /upgrading my LAB environment  to windows 2008 R2 / server 2012. When I was adding members to the Local Administrator group, member gets added but than disappears from the view, I tried on different server as well, same behavior. Suddenly I realized that I have cloned them without changing the…

Publish Active Directory Group membership to SharePoint Webpage

Hi Readers, Today I am sharing a power-shell solution that can be used to publish Group Membership information to SharePoint Webpage. Download the scripts from below link & modify the grouppublish.ps1 script. http://gallery.technet.microsoft.com/Publish-Active-Directory-e91ef5a9 $group = “Group1” (group name for which you want to publish the membership) $source = “C:\Scripts\PatchPilot\output1\patchpilot.html” (Path of HTML file that will be…

Export AD group members – nested / recursive using Quest input via text file

Hi Readers, https://github.com/VikasSukhija/Downloads/blob/master/extractgroupmembers.zip (download link) This is extension of below script & have been modified because of community user request.   Difference is that this one takes input via text file & can handle multiple group at ones.   Create a text file with group names, like I have created (in the same folder)  …

Export AD group members – nested / recursive group members – input via textfile

Hi Readers, This script is the extension of below script http://gallery.technet.microsoft.com/Export-AD-group-members-6e6c8a9f The only difference is: It takes input of group names from text file & you can run this for multiple groups. You just have to put CN of a group (otherwise it will not work) in the text file. “groupname.txt”   Extract the script &…