WINS Records Removal Script

Hi All, Just sharing a script that has been written to remove WINS records from multiple servers. ADD the wins server ips in winsserver.txt file. update recordsdel.csv file with the records that needs to be removed. Extract the ZIP file from below link, update winsserver.txt file & recordsdel.csv file.   https://gallery.technet.microsoft.com/WINS-Records-Removal-Script-30571292 ###############################################################################  #                         Author: Vikas Sukhija  #                         Reviewer:  #                         Date: 01/17/2015  #                         Description: To remove record from Multiple wins …

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

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…

Export DHCP Scope Options Values

Hi Readers, Sharing a script that we have used to fullfil one of the requirement to extract the DNS scope option(006) values from all scopes on all dhcp servers. First of all thx to the creator of DHCP powershell module writer. My script is based on this module & it is included in the below download…