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

Kubernetes: Cert-Manager x509 ECDSA verification failure

Symptoms Error from server (InternalError): error when creating "kimconnect-cert.yaml": Internal error occurred: failed calling webhook…

Enable WinRM Remotely

Usage:enableWinRm 'RemoteServer' get-credential $remoteComputer='REMOTESERVER' $winRmPort=5985 $adminCredential=get-credential function enableWinRm($remoteComputer,$winRmPort=5985,$adminCredential){ function Check-NetConnection($computername,$port,$timeout=200,$verbose=$false) { $tcp = New-Object System.Net.Sockets.TcpClient;…

Linux: How To Install Visual Studio Code

Intro Bypassing any discussions about choosing Visual Studio Code (VS Code) over Atom or Sublime…