Posted On March 28, 2019

Transfer DHCP Scopes Between Windows Servers

kimconnect 0 comments
blog.KimConnect.com >> Networking , Windows >> Transfer DHCP Scopes Between Windows Servers
When a new DHCP server is introduced into the system, it’s often necessary to configure it with the existing scopes so that it could function jointly with existing authorized DHCP servers. The process to perform this task is simple:
  1. Export DHCP scopes from SERVER01
    netsh dhcp server export c:\dhcp-scopes.txt all
  2. Import DHCP scopes to SERVER02
    netsh dhcp server import c:\dhcp-scopes.txt all

Leave a Reply

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

Related Post

PowerShell: Check File Encoding UTF7, UTF8, UTF16, UTF32, ASCII

$filePath='C:\Windows\System32\Drivers\etc\hosts' function getFileEncoding($filePath) { # Checking the byte order mark (BOM) or first 4 bytes…

Update Root Hints on the DNS Server

You can use root hints to prepare servers that are authoritative for nonroot zones so…

IT Security Compliance

To prepare an organization for compliance of Section 404 of COBIT (Control Objectives for Information…