WARNING: Since this article can cause an issue on your System, take any necessary action before running any command. Today, I got a replication error from my Active Directory with error 8456 or 8457: “The source | destination server is currently rejecting replication requests” When I run repadmin /replsummary command, I got “IS_GC DISABLE_OUTBOUND_REPL DISABLE_INBOUND_REPL” […]
Move WSUS Content to another location
In case you facing the situation that you need to move the WSUS content to another location to free up the disk space. Below are the steps to do that. You must be a member of the local Administrators group on the WSUS server. Run the command prompt with elevated permission. Change to the folder […]
Why you should become microsoft Azure Certified
For anyone who looking the answer, Thomas Maurer has posted a great article on his blog. You can follow this link https://www.thomasmaurer.ch/2019/08/why-you-should-become-microsoft-azure-certified/ to get the detail answer. Thank you.
Exchange SSL Certificate Services Greyed Out
When you want to change/manage services for Exchange Server 2013 or above through the Exchange Admin Center, you found the checkboxes options are greyed out and can’t be changed. This is happening because the Exchange server will not allow you to un-assign or remove the SSL Certificate from services. To resolve this issue, you should […]
Hyper-V Live Migration error: “The operation is not supported”
Issue When you run the Hyper-V Live migration or move the storage location of the VM on the Stand-Alone Hyper-V server (Not Cluster), you got the following error: And In the Hyper-V-VMMS event log, there is the following entry: Log Name: Microsoft-Windows-Hyper-V-VMMS-Admin Source: Microsoft-Windows-Hyper-V-VMMS Date: 7/29/2019 12:07:42 PM Event ID: 20923 Task Category: None Level: […]
Change Guest VM IP from Hyper-V Host
Since Windows Server 2012, Microsoft introduces the ability to change or inject IP configuration of Guest VM from its HyperV host. This feature is using Msvm_GuestNetworkAdapterConfiguration class. Below is the PowerShell Script from itprotoday to change/inject the Guest VM IP. Replace the name of the VM as needed and the IP configuration. If you want […]
Enable DHCP Server Logging on Windows Server 2019
Problem Sometimes, You want to enable DHCP Server logging to monitor the DHCP server to track down the issue you have. Solution Using PowerShell Command You can enable the DHCP Server log using Set-DhcpServerAuditLog CmdLet. The Set-DhcpServerAuditLog cmdlet sets the Dynamic Host Configuration Protocol (DHCP) server service audit log configuration on the DHCP server service that runs […]
Install SSL Certificate for RDS Deployment using PowerShell
I have an issue while installing the SSL Certificate for RDS Deployment using GUI. Therefore, I use the PowerShell command to do that. Basically, the command is using Set-RDCertificate CmdLet. The Set-RDCertificate cmdlet imports a certificate or applies an installed certificate to use with a Remote Desktop Services (RDS) role. You can use this cmdlet to secure […]
Outlook Web App (OWA) Authentication Issue – Exchange 2010
We recently got an authentication issue on Our Outlook Web App (OWA) for Exchange 2010. The OWA itself can be loaded. However, when you try to log on (Authenticate) there is an issue that said ” OWA might be temporarily down or it may have moved permanently to a new address. “ There were no […]
Run a SQL Server Query in PowerShell
Yesterday, I got a request from our customer that need to run a SQL Server Query using PowerShell command. After looking on the Google 😀 I found the Script from Romanian Coder. Basically, the script is using System.Data.SqlClient Namespace on NetFramework 4.8. Below is the complete script to Run a SQL Server Query in PowerShell: […]