The Local Group Policy Editor console (gpedit.msc) is used to configure Windows settings. Gpedit.msc is a standard mmc snap-in available in all Windows editions (Pro/Enterprise/Education) except Home editions (Home/Single Language).…
Windows 10
- PowerShellWindows 10Windows Server 2019
Writing Output to Log Files in PowerShell Script
April 19, 2023You can use simple text log files to control running and track all of the activities in your PowerShell scripts. This is useful when debugging errors or auditing script actions.…
- PowerShellWindows 10Windows Server 2019
How to Backup (Export) and Restore Device Drivers on Windows 10?
September 3, 2021After reinstall/clean install Windows, the user needs to install the latest driver versions for the devices installed on the computer. The user must manually find, download and install the necessary…
- PowerShellWindows 10Windows Server 2019
Automatically Add Static Routes After Connecting to VPN
September 20, 2022In the latest Windows 10 builds, you can automatically add static routes when establishing a VPN connection. When the VPN connection is terminated, the route is automatically removed from the…
- Windows 10Windows Server 2016Windows Server 2019
High Non-Paged Pool Memory Usage (Leak) in Windows
August 30, 2021Windows computers and servers may experience troubles with memory overflow caused by a leak of a certain system driver that stores its data in the system’s non-paged memory pool. Non-paged…
- Windows 10Windows Server 2012 R2Windows Server 2016
Fix: Windows Stuck at “Preparing to Configure Windows”
August 23, 2021It is not the first time when I have encountered the following issue on Windows Server 2016 (2012 R2 or 2008 R2): after the installation of updates or some roles/features,…
- PowerShellWindows 10Windows Server 2019
PowerShell SecretManagement Module: Securely Manage Credentials and Secrets
May 10, 2023Microsoft recently released a very useful SecretManagement PowerShell module. You can use it to securely store and use saved passwords (secrets) in your PowerShell scripts. The module consists of two…
- PowerShellWindows 10Windows Server 2019
PowerShell: Get Folder Sizes on Disk in Windows
February 20, 2023Most Windows users know that the easiest way to check the size of a folder is to open the folder properties in File Explorer. More experienced users prefer to use…
- PowerShellWindows 10Windows Server 2019
Managing Saved Passwords Using Windows Credential Manager
August 18, 2021Windows Credential Manager allows saving credentials (usernames and passwords) to access network resources, websites, and apps. With Windows Credential Manager, you can connect to remote resources automatically without entering your…
- PowerShellWindows 10Windows Server 2019
Kill a Windows Service That Stucks on Stopping or Starting
August 5, 2021How to manually kill a Windows service process that is stack at “Stopping” or “Starting” state? Most Windows administrators have faced a problem when they try to start/stop/restart a service,…