How to Check BitLocker Encryption Status From PowerShell on Windows 11

Quick fix: Open PowerShell (Admin). Run: Get-BitLockerVolume. Output shows all drives with their encryption status, percentage, and protection on/off. For one drive: Get-BitLockerVolume -MountPoint “C:”. For brief summary: manage-bde -status C:. BitLocker can be active, suspended, decrypting, or off. PowerShell’s Get-BitLockerVolume cmdlet shows encryption status at a glance. Useful for: confirming protection after enabling, checking … Read more

How to Suspend BitLocker for Hardware Maintenance on Windows 11

Quick fix: Open Command Prompt (Admin). Run: manage-bde -protectors -disable C: -RebootCount 1. BitLocker suspends until the next reboot, then auto-re-enables. For multi-reboot maintenance: -RebootCount 3 (3 reboots before auto-re-enable). For permanent suspend: omit RebootCount. To resume manually: manage-bde -protectors -enable C:. BitLocker protects the drive but locks the boot environment to specific TPM measurements. … Read more

How to Hide the Last Signed-In User on the Login Screen on Windows 11

Quick fix: Open Group Policy Editor (gpedit.msc). Navigate to Computer Configuration → Windows Settings → Security Settings → Local Policies → Security Options. Find Interactive logon: Do not display last signed-in. Set to Enabled. Click OK. Sign out and in. Login screen no longer shows the last user’s name and avatar; both username and password … Read more

Fix Sign-In Options Missing on Windows 11 Lock Screen

Quick fix: On the lock screen, click Sign-in options (small link below the password field). If link is missing: only password is configured. Add other methods via Settings → Accounts → Sign-in options. Set up PIN, Windows Hello (face/fingerprint), or security key. Each enabled method appears in lock screen options. For corporate accounts: Group Policy … Read more

How to Promote a Local Account to Administrator Safely on Windows 11

Quick fix: Sign in as existing Administrator. Open Settings → Accounts → Other users. Pick the local account → Change account type → Administrator. OK. Alternative: Command Prompt (Admin) → net localgroup Administrators “Username” /add. The new admin can install apps, change system settings. Recommend: keep one strong admin account and use standard accounts for … Read more

Why Two-Factor Prompts Loop When Signing In on Windows 11

Quick fix: 2FA loops on Windows 11 sign-in usually mean Microsoft Authenticator can’t reach Microsoft servers, time on PC is off, or trusted device flag has been reset. Fix: ensure PC time correct (Settings → Time & language → Set time automatically). Approve from Authenticator. Tick “Stay signed in” on first successful auth. For chronic … Read more

How to Configure Dynamic Lock With a Phone on Windows 11

Quick fix: Pair phone via Bluetooth: Settings → Bluetooth & devices → Add device → Bluetooth → pick phone. Once paired: Settings → Accounts → Sign-in options → Dynamic Lock → tick Allow Windows to automatically lock your device when you’re away. When phone moves away (out of Bluetooth range, ~30 seconds), Windows auto-locks. Dynamic … Read more