Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,726 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
how could I migrade domain dhcp server from 2012r2 to 2022, I use filters and "Allow" folder where I have many MAC Addresses, is there any command that backup and restore all filters, reservations, scopes? Thanks.
Hi @Tutek
You can use the command Get-dhcpServerv4Failover and add-dhcpserverv4failover to import all MAC address from DHCP 2012 and add them to DHCP 2022:
Get-DhcpServerv4Filter -ComputerName "dhcpserver2012.contoso.com" | Add-DhcpServerv4Filter -ComputerName "dhcpserver.contoso.com" -List Deny
Please don't forget to mark helpful answer as accepted