Active Directory Health Check

  New Version : https://techwizard.cloud/2021/05/04/active-directory-health-check-v2/ Hi Readers, Sharing a script that can be used for checking AD Health, This script is similar to one of my other health Check scripts that we use for exchnage. https://techwizard.cloud/2014/02/14/exchange-2010-health-check-script/ This will check below: Ping,Netlogon,NTDS,DNS,DCdiag Test(Replication,sysvol,Services) Just download the zip file from below link & run the batch file using…

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 &…