Active Directory (AD) is a Microsoft brand for identity-related capabilities. In the on-premises world, Windows Server AD provides a set of identity capabilities and services, and is hugely popular (88% of Fortune 1000 and 95% of enterprises use AD). This topic includes all things Active Directory including DNS, Group Policy, DFS, troubleshooting, ADFS, and all other topics under the Microsoft AD and identity umbrella.
TRUSTED BY
How to Easily change a DHCP's Scope Subnet
When the subnet changes, you will have to do a lot of work to remake all your DHCP's options because you have to erase the scope to remake it after.
You will need to save this information in order to remake:
Excluded IPs
Reservation(s)
DHCP's scope option(s)
There is a easy way to do it with NETSH;
netsh dhcp server \\”Server” scope “ip_of_scope” dump>c:\dhcp.txt
After; edit the file, and change the line;
Dhcp Server \\server add scope 192.168.0.0 255.255.255.128 "Pool DHCP" ""
Save the file, and when ready erase the DHCP scope and issue netsh exec c:\dhcp.txt
And voila, the scope will be changed easily!
taken from here
https://social.technet.microsoft.com/wiki/contents/articles/8484.how-to-easily-change-a-dhcp-s-scope-subnet.aspx