Posted On March 30, 2019

Simple Active Directory & DNS Synchronization Script

kimconnect 0 comments
blog.KimConnect.com >> Codes , Networking >> Simple Active Directory & DNS Synchronization Script
@echo off

GOTO push_or_pull

:push_or_pull
set /p action="Type in Push, Pull, or Quit. Press Enter for default action = push: " || set action=push

IF /i %action% == pull GOTO pull
IF /i %action% == push GOTO push
IF /I %action% == quit GOTO end
IF /I %action% == q GOTO end
IF /i NOT %action% == pull GOTO try_again

:try_again
echo "Input not recognized. Please try again."
GOTO push_or_pull

:pull
REM Pulls a replication from a specific Domain Controller
set /p dc="Enter DC to pull replication from: "
repadmin /syncall %dc% /d /e /a /A
GOTO end

:push
REM Pushes a replication to a specific DC
set /p dc="Enter DC to push replication to: "
repadmin /syncall %dc% /d /e /a /A /P
GOTO end

:end
pause

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Reset Failover Clustering Quorum

# Adding Prerequisite Microsoft ClusterFunction installFailoverClustersModule{if (!(get-module -Name "FailoverClusters") ){#Install-WindowsFeature Failover-Clustering | out-null;Install-WindowsFeature RSAT-Clustering-MGMT |…

WinRM Management Consideration

Infrastructure needs to be able to leverage scripting automation to perform Vulnerability Remediation, Resource Provisioning,…

SQL Failover (Simple Method)

$servers="SQL01","SQL02","SQL03"; # Dynamic Credential method 1 $who = whoami if ($who.substring($who.length-2, 2) -eq "-admin"){$username=$who;} else…