Windows Keyboard Error Code 19

Fresh install of Windows 10 22H2 on a Lenovo T14 Gen 4 notebook. Inside Windows, the built-in keyboard doesn’t work nor does any external keyboard. Keyboards work fine in BIOS and during post. Windows Device Manager shows the error: Windows cannot start this hardware device because its configuration information (in…

Continue reading

Completely Disable UAC

To completely disable User Account Control on a Windows machine set the following registry key. Key:     HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System Value:   “EnableLUA” Type:    REG_DWORD Value:   0x00000000 The following powershell command does the trick nicely: Set-ItemProperty -Path registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System -Name EnableLUA -Value 0   https://msdn.microsoft.com/en-us/library/cc232765.aspx?tduid=(8b33f2bee35cf8af0da845c7fe4d2393)(256380)(2459594)(TnL5HPStwNw-rp6Qh8nm5xnZwnOhPE.33Q)()

Continue reading