Disable AD users in Bulk

Hi Readers, Today I am sharing a quickly written small script which we have used to disable some of the AD users immediately. As there was some issue going on with our Termination tool, so we got the user id’s in text file & ran the disable AD user script. Thanks again to quest shell…

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…

Track Changes to Active Directory Users Attributes

Hi Readers, We had a requirement to monitor Active Directory Users Attributes (Name,DisplayName,Department,Manager,DN,Title,l) for particular users. After researching a bit on internet (so that we don’t have to write it from scratch if someone has already written it), we found a script for monitoring group membership but not AD attributes so we had used the script we found…