โ† All Tweaks

UI & Bloat Removal

Disable Lock Screen

Skips the lock screen image and goes straight to login on boot/wake.

Benefit

Faster access to desktop after boot/wake

Impact

low

Commands (1)

$entries = @(; @{Path='HKLM:\SOFTWARE\Policies\Microsoft\Windows\Personalization'; Name='NoLockScreen'; Value=1; Type='DWord'; Label='Lock screen disabled'}; ); foreach ($e in $entries) { try { if (-not (Test-Path $e.Path)) { New-Item -Path $e.Path -Force -ErrorAction Stop | Out-Null } New-ItemProperty -Path $e.Path -Name $e.Name -PropertyType $e.Type -Value $e.Value -Force -ErrorAction Stop | Out-Null; Write-Host "[OK] $($e.Label)" } catch [System.UnauthorizedAccessException] { Write-Host "[INFO] $($e.Label) - key locked by system (feature likely already removed)" } catch { Write-Host "[ERR] $($e.Label) - $($_.Exception.Message)" } }