Bulk ADD Remove from Local Admin

Hi Readers, Just sharing a quickly written script to add or remove user account or group from Local admin of servers. Extract the script from below link, change the domain variable. https://github.com/VikasSukhija/Downloads/blob/master/AddRemovetoLocalAdmin.zip $domain = “domain” Update the CSV file Now you can use the addtoLocaladmin.ps1 or removeLocaladmin.ps1 as per your requirement. ADD Local ADmin ##############################################################################  ##                                                                                             …

Powershell to ADD, Remove and Extract Email Address

Hi Readers, We recently had a requirement to remove old decommissioned domain email address from user mailboxes, so We have taken a cautious approach & written three scripts, that can be downloaded from below link. https://gallery.technet.microsoft.com/scriptcenter/Powershell-to-ADD-Remove-85adf04b ReportEmailAddress  –> Reporting the user mailboxes that have old email address RemoveEmailAddress –> Get input from the ReportEmailAddress AddemailAddress…

Clear ActiveSync Stale Partnerships

Hi Readers, Sharing a script that can be used to clear ActiveSync Stale Partnerships. Define the number of days , for example:- for 1 month old partnerships to be removed Enter 30 $days = (get-date).adddays(-30) Download and extract the script from below link. This script is useful in cleanup of old & stale partnerships. https://github.com/VikasSukhija/Downloads/blob/master/ClearActivesyncpartnerships.zip ######################################################################################## …

Monitor Critical DNS Records

Hi Readers, Recently we have faced an issue where some of the emails sent from our domain were getting rejected. On troubleshooting we found that its because of some issue at our ISP & our domain’s reverse DNS entries were missing. Issue is fixed now but we wanted to be proactive in knowing if our…