Message Tracking Multiple users

Hi Readers, Today I am sharing a script that reads list of users from CSV file & extract message tracking logs based on the dates mentioned in CSV. Here is the example CSV file: & here are the results in log folder that will be received after script execution Download & extract the zip file from…

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…

Enable Out of Office thru Powershell

Hi Readers, With the advent of Exchange 2010 we have got the new feature of setting OOO thru powershell. Setting Up out of office by Exchange shell: Set-MailboxAutoReplyConfiguration -identity “Vikassukhija@Labtest.com” –AutoReplyState Scheduled –StartTime “06/30/2014” –EndTime “07/02/2014” –ExternalMessage “Thanks for your mail. I am out-of-office and do not have access to mails. I will return on…

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…