How To Rename NIC Adapters with PowerShell

If you want to rename NIC adapters with PowerShell, follow this tutorial: Step 1. Open PowerShell with admin privileges Step 2. Execute the following command, Rename-NetAdapter -Name "<Old NIC Adapter Name>" -NewName "<New Adapter Name>" Example If you want to rename an old NIC Ethernet to a new name ManagementAdapter, the command should look like, Rename-NetAdapter ... Read more

The following configuration required for SID history has not been performed. Local group, $$$, required for auditing has not been created in the source domain

While performing AD objects migration, you may receive the following error: The following configuration required for SID history has not been performed. Local group, <source_domain_name>$$$, required for auditing has not been created in the source domain Solution Do the following to resolve the problem: Create a local group in the source domain Open active directory ... Read more

How to Write VBScript Code on Windows

Open notepad or any other third party editor like Notepad++. Write any VBScript code suppose Wscript.Echo "Hello" Wscript.Quit 0 Save the file with .vbs extension suppose hello.vbs. You can then run that VBScript file from command prompt. Reference http://testingfreak.com/run-vb-script-code-written-on-notepad-without-additional-software-windows/

Unable to access the computer. Make sure that this computer is on the network, has remote administration enabled, and is running the “Plug and Play” and “Remote registry” services. The error was: Access is denied.

When you remotely (I mean from another computer on the network) access the device manager of Windows Server 2016/2012/2008, you may get the following error: Unable to access the computer. Make sure that this computer is on the network, has remote administration enabled, and is running the “Plug and Play” and “Remote registry” services. The ... Read more

How to Check Which Domain Controller your Machine is Getting Authenticated

If you have multiple domain controllers in your environment and you want to check with domain controller is authenticating your client, you can execute the following command on command prompt. (Execute it with elevated privileges) nltest /dsgetdc:<domain> This will return you the domain controller you are getting authenticated from. Above picture shows the client machine ... Read more

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