This repository was archived by the owner on May 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ DisableLockScreen # EnableLockScreen
8989# DisableLockScreenRS1 # EnableLockScreenRS1
9090HideNetworkFromLockScreen # ShowNetworkOnLockScreen
9191HideShutdownFromLockScreen # ShowShutdownOnLockScreen
92+ DisableLockScreenBlur # EnableLockScreenBlur
9293# DisableAeroShake # EnableAeroShake
9394DisableStickyKeys # EnableStickyKeys
9495ShowTaskManagerDetails # HideTaskManagerDetails
Original file line number Diff line number Diff line change @@ -1338,6 +1338,18 @@ Function ShowShutdownOnLockScreen {
13381338 Set-ItemProperty - Path " HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" - Name " ShutdownWithoutLogon" - Type DWord - Value 1
13391339}
13401340
1341+ # Disable Lock screen Blur - Applicable since 1903
1342+ Function DisableLockScreenBlur {
1343+ Write-Output " Disabling Lock screen Blur..."
1344+ Set-ItemProperty - Path " HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" - Name " DisableAcrylicBackgroundOnLogon" - Type DWord - Value 1
1345+ }
1346+
1347+ # Enable Lock screen Blur - Applicable since 1903
1348+ Function EnableLockScreenBlur {
1349+ Write-Output " Enabling Lock screen Blur..."
1350+ Remove-ItemProperty - Path " HKLM:\SOFTWARE\Policies\Microsoft\Windows\System" - Name " DisableAcrylicBackgroundOnLogon" - ErrorAction SilentlyContinue
1351+ }
1352+
13411353# Disable Aero Shake (minimizing other windows when one is dragged by mouse and shaken)
13421354Function DisableAeroShake {
13431355 Write-Output " Disabling Aero Shake..."
You can’t perform that action at this time.
0 commit comments