Win11 Insecure Guest Logins

Computer Configuration>Administrative Templates>Network>Lanman Workstation

Enabled: Enable insecure guest logons
Disable: Require encryption

Then

Disable SMB Signing:

Set-SmbClientConfiguration -RequireSecuritySignature $false
Set-SmbServerConfiguration -RequireSecuritySignature $false

Reboot

Takeown

takeown /R /A /F foldername /D N

icacls foldername /grant Administrators:F /T /C

Disable Modern Standby

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Power]
“PlatformAoAcOverride”=dword:00000000

Reboot

Windows 11 Restore Old Context Menus

https://4sysops.com/archives/restore-classic-context-menu-in-windows-11-explorer-using-group-policy-or-powershell/

reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /t REG_SZ

Get-Process explorer | Stop-Process -ErrorAction Ignore

Back to Top