🔐 Essential Windows Commands for Managing Passwords

Whether you’re a system admin, helpdesk technician, or a curious power user, password management is something you’ll deal with often. Here’s a neat little collection of powerful Windows command-line tools you can use to reset, set, and manage passwords—without opening a single window or GUI. 🔁 1. Reset a Password for an Active Directory User … Read more

How to Generate a Report of Client Device Uptime in SCCM with Serial Numbers

Monitoring client device uptime is crucial for ensuring system health, stability, and compliance—especially in enterprise environments. In Microsoft Endpoint Configuration Manager (SCCM), you can quickly fetch and export this information using a simple SQL query. In this guide, we’ll walk you through a SQL script that retrieves the hostname, last boot time, and uptime in … Read more

How to Disable 3DES and Blowfish and Enable AES via Group Policy (GPO)

This step-by-step guide will show you how to configure your Windows Server to disable 3DES and Blowfish ciphers while enabling and prioritizing AES, all through Group Policy (GPO). By implementing this configuration, you can enhance the security of your servers and meet modern cryptographic standards. Step 1: Open Group Policy Management Step 2: Configure SSL … Read more

How to Disable Widgets in Windows 11 Using GPO

Widgets in Windows 11 can be distracting or unnecessary in certain environments. You can disable them through Group Policy Objects (GPO) by using the “News and Interests” ADMX and ADML files exported from a Windows 11 device. This guide outlines the steps to copy the necessary files, import them into the Active Directory (AD) server, … Read more

Register an Azure SQL Server VM with the SQL IaaS Agent Extension

How to Register an Azure SQL Server VM with the SQL IaaS Agent Extension Using PowerShell and CLI When we install SQL Server in Azure VM. The SQL IaaS Agent Extension enables advanced management capabilities for SQL Server Virtual Machines (VMs) in Azure, such as automated backups, patching, and simplified license management. In this article, … Read more

Error while importing drivers into SCCM with SQL Server 2022

We get below error trying to import Drivers on to SCCM with SQL 2022 Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryException Not found , property = CI_ID This issue occurs due to the Database compatibility with the SCCM Current branch. In order to fix this issue, we need to alter the CM DB compatibility from 160 to 150. Here is the … Read more

Change IP of a VM via Azure Serial Console Access (SAC)

Commands to Manage IP Configuration in SAC To work with the IP configuration, follow these steps: 1. Enter the Networking Context SAC uses command channels for different contexts. To switch to the network management context, use: SAC> cmdSAC> ch -si 1 This brings up the Command Line Interface of the Server. 2. View Network Interfaces … Read more

OpenVPN on a Nessus Linux VM

Step-by-Step Guide to Install OpenVPN on Nessus Linux VM: 7. Verify VPN Connection for Nessus Scans: Once the VPN is established, you can perform vulnerability scans using Nessus by targeting the internal network that is now accessible via the VPN connection. To confirm connectivity between your Nessus Linux VM and the remote systems, you can … Read more

Fix for the error “The ws-management service cannot process the request. the service is configured to not accept any remote shell requests” when we Install any roles or features in windows Server 2016, 2019 and 2022.

We are trying to install the “Bit locker feature” in the Windows Server 2019. In the last step of installation from the Add roles and features, the installation will stop with the error “The ws-management service cannot process the request. the service is configured to not accept any remote shell requests. “ To fix this … Read more

Access a Azure VM without RDP Licensign server.

Error when we try to access an Azure VM which was unable to communicate with the RDP Licensing server If the below error occurs, continue with the troubleshooting steps. Since Remote Desktop Protocol (RDP) isn’t available and the server is in Azure, you’ll need to use PowerShell remoting or the Azure Serial Console to access … Read more

Remove the GPO locally on a client device with admin previlages.

To remove a server from all GPOs locally on the server itself without modifying anything in Active Directory, you can use the following methods: 1. Disable Group Policy Processing (Local Group Policy): You can prevent the local machine from processing any Group Policies by modifying the local Group Policy settings: 2. Delete Local Group Policy … Read more

External Email Warning Banner for emails Outside the organisation

Login to the Exchange Admin Center– Expand Mail flow– Select Rules– Click on the plus and select Create a new Rule – Give the rule a name – Click on Apply this rule if – Choose The sender… is external/internal – Select Outside the organization – Choose The recipient is … external/internal – Select Inside this organization – Click on Do the following – Choose Apply a disclaimer to … Read more

Unable to run the “Net user” command with the “Access Denied” Error

Sometimes, we may encounter this issue even after rolling back the group policy that was previously set to restrict users’ access via group policy. To Fix this issue Trusted installer NT account needs to be added with full control for the net.exe and net1.exe located under C:\windows\system32. Also, the ownership needs to be given to … Read more

Fortigate VPN Authnetication fails intermittently.

Do a sniffer to the NPS/Radius server from the FortiGate Firewall to find the error. If you find the below error. Then apply the solution below on the NPS Radius server. Windows server might refuse NTLM connections because NTLMv1 is disabled by default. Enable NTLMv1 in the server as follows: Start > Administrative Tools > … Read more

Create Self-Signed certificates for point-to-site in Azure

PowerShell commands to create Root and Child Certificate for the Azure P2S Create a self-signed root certificate Create a self-signed Child certificate on the PowerShell console session if it is still open On the new PowerShell console session Locate the root certificate Replace the THUMBPRINT And Execute the below script Export the root without a … Read more