Microsoft recently released a new WebView2-based version of MS Teams for Windows. The switch from the Electron engine to WebView2 runtime has significantly improved the performance of Teams (almost doubled)…
Windows 10
- PowerShellWindows 10Windows 11Windows Server 2019
Querying Windows Event Logs with PowerShell
May 2, 2023The Windows Event Log is an important tool for administrators to track errors, warnings, and other information reports that are logged by the operating system, its components, or programs. You…
- Active DirectoryGroup PoliciesWindows 10Windows 11Windows Server 2019Windows Server 2022
Configure Windows LAPS (Local Administrator Passwords Solution) in AD
September 8, 2023Windows LAPS (Local Administrator Password Solution) allows you to centrally manage the passwords for the local administrators on the computers in your AD domain. The current local administrator password is…
- Windows 10Windows 11Windows Server 2019Windows Server 2022
How to Integrate Security Updates into Windows Image (ISO/WIM)
June 8, 2023In order to ensure that the Windows image that you deploy to computers in your network always has the latest security updates, you can add new update packages to your…
- PowerShellWindows 10Windows Server 2019
Running Simple HTTP Web Server Using PowerShell
April 14, 2023For 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,…
- 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…
Branded computers/laptops that come with Windows pre-installed usually have a hidden hardware manufacturer OEM recovery partition. This partition usually contains a manufacturer’s Windows reference image, which can be used to…
- 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…