Skip to content
This repository was archived by the owner on May 28, 2021. It is now read-only.

Commit 30af458

Browse files
sippi90Disassembler0
authored andcommitted
Add "Disable Lock screen Blur" (#204)
1 parent ed35417 commit 30af458

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

Default.preset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ DisableLockScreen # EnableLockScreen
8989
# DisableLockScreenRS1 # EnableLockScreenRS1
9090
HideNetworkFromLockScreen # ShowNetworkOnLockScreen
9191
HideShutdownFromLockScreen # ShowShutdownOnLockScreen
92+
DisableLockScreenBlur # EnableLockScreenBlur
9293
# DisableAeroShake # EnableAeroShake
9394
DisableStickyKeys # EnableStickyKeys
9495
ShowTaskManagerDetails # HideTaskManagerDetails

Win10.psm1

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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)
13421354
Function DisableAeroShake {
13431355
Write-Output "Disabling Aero Shake..."

0 commit comments

Comments
 (0)