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 […]

How to Redirect 404 Error Page to another URL in IIS Server 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

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

PowerShell

Get Windows OS version on Specific OU using 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

Get Windows OS version on Specific OU using PowerShell 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)

Get Hyper-V Data Exchange Service (Key Value Pair) 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

Windows Server Activation using Automatic Virtual Machine Activation 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

Manage Windows Update using PowerShell 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

Backup MySQL Database using PowerShell Script 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

Get public IP on a Windows Server via PowerShell Read More »