Migrate DHCP KB ID 0001792
Problem
If you have a lot of DHCP scopes, options, or reservations, then manually creating them on your new DHCP servers can be a both a time consuming and tedious process. If only there was an easier way?
Migrate DHCP with Netsh
Below you can see an example, where I have many scopes and lot’s of settings that would be painful to have to recreate from scratch. This example is on Server 2008 R2,but your source server could be server 2000, (or newer) the export procedure is the same.
Open an administrative command window, and issue the following command.
[box]
netsh dhcp server export C:\dhcp-export.txt all
[/box]
Now on the source DHCP server I’m stopping and disabling the DHCP SERVER service, you might want to wait until, you are about to authorise the new 2022 DHCP server to minimise downtime, before doing this in production.
Copy the exported text file from the old DHCP server, to the new server.
Migrate DHCP: Install DHCP on Windows Server (via PowerShell)
Open an administrative PoweShell window, and issue the following command.
[box]
Install-WindowsFeature DHCP -IncludeManagementTools
[/box]
Then import the settings with the following command.
[box]
netsh dhcp server import C:\dhcp-export.txt all
[/box]
Go to Administrative Tools > DHCP > You should see your migrated information in here, the DHCP scopes will be down (because the server has not yet been authorised in AD). Right click the server name, and select Authorise.
Note: At this point ENSURE the old DHCP server has had its DHCP server service stopped and disabled.
Wait a few seconds and then restart the DHCP Server service, (this can be done as shown below).
After a few seconds, the new scopes should be up and getting served.
Related Articles, References, Credits, or External Links
NA