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

Puppet Client Server Lab Setup

Server # Setup client machine name sudo vim /etc/hosts ## Insert this line ## xx.xx.xx.xx…

MMC Short-cuts

  Admin Applet Command AD Domains and Trusts domain.msc Active Directory Management admgmt.msc AD Sites…

Last Logon Dates of List of AD Accounts

import-module activedirectory$output=""Get-Content C:\Users\kimconnect\Desktop\targetAccounts.txt | Foreach-Object -Process{ #  cast an array object as string before using…