How to Redirect 404 Error Page to another URL in IIS Server

The HTTP 404, 404 Not Found, and 404 error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications, to indicate that the client was able to communicate with a given server, but the server could not find what was requested. Showing default 404 Error page is not looking good on … Read more

“No Remote Desktop License Servers available” while RDP to Windows Server

When you trying to connect to the Windows Server Remote Desktop Session Host (RDSH), you may encounter the following error message:  The remote session was disconnected because there are no Remote Desktop License Servers available to provide a license. Please contact the server administrator. This issue appears because the server fails to contact the licensing … Read more

Get Windows OS version on Specific OU using PowerShell

PowerShell

Getting the Windows OS Version on specific OU is very useful for System Administrator. For example for the upgrade plan or system architecture plan.  Before we continue, you have to import the Active Directory Module for Windows PowerShell with the following command: Import-Module activedirectory For your information, In PowerShell 3.0 and above, this module is imported by … Read more

Get Hyper-V Data Exchange Service (Key Value Pair)

What is Hyper-V Data Exchange Service (KVP) Hyper-V Data Exchange Service is one of the Integration Services on Hyper-V that provides a mechanism to exchange basic metadata between the virtual machine and the host.  The data exchange service (KVP) shares small amounts of machine information between Virtual Machine and the Hyper-V host using key-value pairs (KVP) … Read more

Receive Segment Coalescing in the vSwitch

Receive Segment Coalescing (RSC) in Hyper-V vSwitch is a feature in Windows Server 2019 and Windows 10 October 2018 Update that helps reduce host CPU utilization and increase throughput for virtual workloads by coalescing multiple TCP segment into fewer but larger segment. RSC is enabled by default on the external vSwitch. RSC in the vSwitch … Read more

Windows Server Activation using Automatic Virtual Machine Activation

What are Automatic Virtual Machine Activation (AVMA) license keys? Automatic Virtual Machine Activation (AVMA) is a feature that handles the Windows Server activation process for an instance of Windows Server as a VM Guest on Hyper-V Server.  AVMA lets you install virtual machines on a properly activated Windows server without having to manage product keys … Read more

Manage Windows Update using PowerShell

Managing windows update using PowerShell command is very helpful once the GUI is not available such as Windows Server Core or using PowerShell Remote. There are many ways managing Windows Update using PowerShell, through this article, I will show how to manage Windows Update using PowerShell Module created by MichalGajda. This module called PSWindowsUpdate, allows you to … Read more

Backup MySQL Database using PowerShell Script

Performing regular database backup is very important to avoid data loss. In this article, we will create a PowerShell Script to backup MySQL databases. Basically, the backup is using mysqldump command. This is an executable file that stored in MySQL installation folder under bin folder.  So let’s start scripting : You can set a Task Scheduler to … Read more

Get public IP on a Windows Server via PowerShell

Getting public IP on troubleshot networking issue is very useful. Especially, there is an issue with accessing your server from the external (public) network. Here is how to get your server’s public IP using PowerShell Invoke-RestMethod Command. Also, you can get the detail of your public IP by removing “ip” variable on the command above. There are … Read more