For testing purposes or as a simple stub at the service deployment stage, I regularly need to run a simple web server on Windows. To avoid a full-featured IIS installation,…
Windows Server 2019
- PowerShellWindows 10Windows 11Windows Server 2012 R2Windows Server 2019
Updating PowerShell Version on Windows
April 12, 2023This article describes how to update Windows PowerShell to the latest version 5.1 and how to install (upgrade) PowerShell Core 7.3. There are currently two branches of PowerShell: The classic…
- Questions and AnswersWindows 10Windows 7Windows Server 2008 R2Windows Server 2019
0x80244010 Exceeded Max Server Round Trips: Windows Update Error
May 10, 2023After deploying a new WSUS server on our corporate network, many Windows clients were unable to receive updates from the server with the error 0x80244010. It turns out that this…
- PowerShellQuestions and AnswersWindows 10Windows 11Windows Server 2019
Find Out Which Process is Listening on a Specific Port on Windows
April 5, 2023When starting a new service or app on Windows, you may find that the port you want to use is already occupied (listening) by another program (process). This article will…
You can use the Import-CSV PowerShell cmdlet to read the contents of a CSV file. Once you load the contents of the CSV file, you get a PowerShell object in…
- Windows 10Windows 11Windows Server 2019
How to Run Program without Admin Privileges and Bypass UAC Prompt
June 8, 2023When started, some programs require permission elevation (the shield next to the app icon), but actually, they don’t need administrator privileges for their normal operation. For example, you can manually…
- PowerShellWindows 10Windows 11Windows Server 2019
Configure Network Settings on Windows with PowerShell: IP Address, DNS, Default Gateway, Static Routes
March 24, 2023In Windows, you can manage the settings for your network adapters not only from the GUI but also from the PowerShell command prompt. In this article, we’ll look at the…
- Windows 11Windows Server 2012 R2Windows Server 2016Windows Server 2019
Fix: Remote Desktop Services Is Currently Busy
March 15, 2023In some cases users cannot sing-in to RDS farm hosts running Windows Server using the built-in RDP client (mstsc.exe) with the following error: The task you are trying to do…
- PowerShellWindows 10Windows 11Windows Server 2019
Send-MailMessage: Sending E-mails with PowerShell
March 17, 2023You can use the built-in Send-MailMessage cmdlet to send SMTP e-mails from PowerShell. You can use this cmdlet to send e-mails in PowerShell version 2.0 and newer (previously you can…
- Group PoliciesPowerShellWindows 10Windows Server 2019
Clear Cache and Temp Files in User Profiles on Windows (RDS) with PowerShell and GPO
March 21, 2023Windows Server RDS farm administrators are often faced with the problem of running out of space on a system drive due to a large amount of user data. This article…