How to Deconfigure DHCP Failover in Windows Server 2016

If you want to remove an existing DHCP failover in Windows Server 2016, you can do it either by using server manager (Most suitable in scenarios where you are using Windows server desktop) or PowerShell (Most suitable in scenarios where you are using Windows server core). This article shows both procedures. Deconfigure DHCP Failover Using Server Manager Step 1. ... Read more

How to Add a New Domain in an Existing Forest in Windows Server 2016 Using PowerShell

In previous article, we added a new domain in an existing forest using server manager. In this guide, I'll focus on adding a new domain using PowerShell. Prerequisites Static IP is configured Administrator account has strong password Firewall is turned off DNS server settings in TCP/IPv4 are correct and they are pointing to a domain ... Read more

How to Configure DHCP Failover in Windows Server 2016 using PowerShell

You can create a DHCP failover with two servers in hot standby mode by using a single Add-DhcpServerv4Failover PowerShell cmdlet. This tutorial assumes you have an active scope on primary DHCP server and a DHCP running on standby or partner server. Configure DHCP Failover in Windows Server 2016 using PowerShell Step 1. Open PowerShell on primary ... Read more

How to Delete Multiple DHCP Scopes Using PowerShell

You can remove multiple scopes from your DHCP server by using this simple script which uses the Remove-DhcpServerv4Scope PowerShell cmdlet. The script assumes you have scope IDs in a series (I have scope IDs of 10.0.0.0, 11.0.0.0 and 12.0.0.0). Delete Multiple DHCP Scopes Using PowerShell Step 1. Open notepad and copy/paste the following script and save the file ... Read more