Remove Messages Based on Message Class – Outlook Powershell

Hi Readers, Sharing a script that we have written to remove EnterpriseVault Shortcut (IPM.Note.EnterpriseVault.ShortCut) items from the outlook. Download the zip file from below & extract it. https://github.com/VikasSukhija/Downloads/blob/master/OutlookAutomation-RemoveEmails.zip Below are the contents of the zip file, you can edit the .ps1 file & change the Class if required. $messageclass = “IPM.Note.EnterpriseVault.ShortCut” There is a registry key…

Check Service Status for List of servers

Hi Readers, Sharing a quickly written script for checking status of particular service on list of servers. Download the script from below link, extract it. https://gallery.technet.microsoft.com/scriptcenter/Check-Service-Status-for-72a990e3 Update the ServicesStatus.ps1 $svc = “MpsSvc”  # Enter the service Name that you want to Monitor Update servers.txt with server names. run the batch file & report will be…

PowerShell Creating a Home Folder for Users

Hi Readers, Sharing a script that I have written recently for Creatiing Home folder, adding permissions & updating Active directory home folder path. Download the zip file from below link & extract the script files. https://github.com/VikasSukhija/Downloads/blob/master/homedirectory.zip   Update the users.txt file with user logon names/samaccountnames Update the variables in the script & run the batch…