Windows

It can get a bit confusing. The below website summarizes the server releases. https://docs.microsoft.com/en-us/windows-server/get-started/windows-server-release-info There are two servicing models for Windows server – a long term servicing channel and a semi annual channel. The Long Term Servicing Channel (LTSC) is like the old server releases of 2008, 2012 etc. They are major releases that are…

Read More Window Server 2019 – 1809, 1903, 1909 Servicing Channels

Clear all the Windows Event Logs, resetting reliability history, from the command line. Command Line Method for /F “tokens=*” %1 in (‘wevtutil.exe el’) do wevtutil.exe cl “%1” Batch Script Method @echo off for /F “tokens=*” %%E in (‘wevtutil.exe el’) do wevtutil.exe cl “%%E” Powershell Method wevtutil el | Foreach-Object {Write-Host “Clearing $_”; wevtutil cl “$_”}

Read More Clear Windows Event Log and Reliability History Command Line

Post thumbnail

One way to hide an application from Add/Remove programs is by settings a SystemComponent registry key for the application in the Uninstall path. For 32-bit applications, the Uninstall path can be found at: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall For 64-bit applications, the Uninstall path can be found at: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall Inside the Uninstall path, find the application you want to…

Read More Hide Application from Add/Remove Programs

When you run an elevated command prompt as administrator, the mapped drives are unavailable in the elevated command prompt. This issue also affects other applications that run in an elevated context (run as administrator) and use drive letters to access mapped drives. When UAC is enabled, the system creates two logon sessions at user logon.…

Read More Show mapped drives of user from elevated command prompts

The easiest way to block the Windows 11 update on a Windows 10 system is by adding a policy via the Registry. In HKEY_LOCAL_MACHINE, navigate to SOFTWARE\Policies\Microsoft\Windows Create a new Key named WindowsUpdate Add the following items in the WindowsUpdate key: REG_DWORD named TargetReleaseVersion with a value of 1 REG_SZ named TargetReleaseVersionInfo with a value…

Read More Block Windows 11 Update