Changes between Version 31 and Version 32 of Windows Eleven Tweeks


Ignore:
Timestamp:
02/19/23 05:53:08 (15 months ago)
Author:
Paul Kulda
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Windows Eleven Tweeks

    v31 v32  
    4444  * --> Settings --> System -> Multitasking
    4545  * Show Snap Layouts when i drag a windows to the top of my screen
     46
     47== turn off Credential Guard ==
     48
     49You can turn it off with registry changes, a GPO, Intune, or whatever you're using to manage your systems (if anything).
     50
     51https://learn.microsoft.com/en-us/answers/questions/1021785/windows-11-22h2-can39t-use-saved-credential.html
     52
     53Easiest way is via the registry:
     54
     55{{{
     56Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard.
     57
     58Add a new DWORD value named EnableVirtualizationBasedSecurity and set its value to 0.
     59Add another new DWORD value named RequirePlatformSecurityFeatures and set that to 0.
     60}}}
     61
     62reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard /v EnableVirtualizationBasedSecurity /t REG_DWORD /d "0" /f
     63
     64reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard /v RequirePlatformSecurityFeatures /t REG_DWORD /d "0" /f
     65
     66
     67{{{Now go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa.
     68
     69Add a new DWORD value named LsaCfgFlags and set it to 0.
     70}}}
     71
     72reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa /v LsaCfgFlags /t REG_DWORD /d "0" /f
     73
     74Restart your computer.
     75
    4676
    4777