Link to home
Start Free TrialLog in
Avatar of fireburn11
fireburn11

asked on

DHCP scope migration from windows 2003 to 2012 R2

Hi all,

I have 2003 server that servers dhcp and print services. could someone suggest a good way of migrating DHCP and print queues from 2003 to 2012 R2 server?

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of Member_2_6492660_1
Member_2_6492660_1
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of zalazar
zalazar

For DHCP, instead of using the export/import function you might also look at the netsh dhcp dump function.
netsh dhcp server dump > c:\temp\dhcp_config.txt
or
netsh dhcp server \\servername dump > c:\temp\dhcp_config.txt

Open in new window

The config is then dumped to a file where all the commands are visible.
Normally I filter only the important parts out of this file and remove e.g. the Class, Optiondef, AuditLog and Database commands.
In this way you know what will be exactly migrated and can even remove the unnecessary things which will result in a cleaner migration.
I didn't test yet but after modification it should be possible to import the modiified file on the new 2012 server via:
netsh exec dhcp_config.txt