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 Configure Windows Server Backup on Windows Server 2016

Windows Server Backup is a feature (not a role) in Windows Server 2016. You need to install it before you can take a backup of your machine. This tutorial is written to show you how to install Windows Server Backup on Windows Server 2016. Prerequisites The administrator account has a strong password. Latest updates are installed. ... 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

How to enable/disable ‘Recent’ option in nautilus sidebar in Ubuntu 16.04

Sometimes, it helps save precious time if you can quickly access recently-opened files. In Ubuntu, the file explorer that ships with the distribution does offer this functionality, but you may need to take some steps before the option shows up. For example, the following screenshot shows that the option isn't enabled in my case: In ... Read more

How to Configure DHCP Failover in Windows Server 2016

DHCP failover is used to load balance client requests among two DHCP servers and provides fault tolerance. If one of the DHCP servers is down, then the other keeps serving IP addresses to clients. DHCP failover can be configured in the following two ways: Load balance mode (Both DHCP servers are active and the load is shared among the two). ... Read more