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: Working With Arrays

Problem: elements of a System.Array couldn't be counted # Example output when an object is…

Daily database backup.bat

@echo offif %USERNAME%==Administrator echo you are administratorset RAREXEC="C:\Program Files\WinRAR\WinRar.exe"set RAREXEC="C:\Program Files\WinRAR\Rar.exe"set LOGFILE="c:\sys\backup.log"SET ARG1=%1IF EXIST D:\…

SonicWall Configuration for Asterisk

How to configure Sonicwall to enable traffic toward a on-premise VoIP server without VLAN  …