How to Recover Access After Forgetting a Local Account Password on Windows 11

Quick fix: Local Windows account password reset requires the password reset disk (created in advance) or a boot from Windows install USB to swap in a new password. If you set up security questions during account creation, click Reset password at the sign-in screen, answer questions, set new password. Otherwise, boot from install USB → … Read more

Fix Audio Sample Rate Mismatch Between Recording and Playback in Windows 11

Quick fix: Open Sound → Recording tab → double-click your microphone → Advanced tab → Default Format dropdown. Set to the same rate as your output device (typically 16 bit, 48000 Hz or 24 bit, 48000 Hz). Repeat for the output device in Playback tab. Matching rates eliminates resampling. You record audio with one app … Read more

Fix SMB Shared Folders Asking for Credentials Repeatedly on Windows 11

Quick fix: Save the network credentials in Credential Manager so Windows uses them automatically. Open Control Panel → User Accounts → Credential Manager → Windows Credentials → Add a Windows credential. Enter the server name, username, and password. Tick “Remember my credentials” in the connection dialog the next time you access the share. Every time … Read more

Fix Scanner Not Detected by Windows Fax and Scan on Windows 11

Quick fix: Windows Fax and Scan needs the scanner driver and the Windows Image Acquisition (WIA) service. Open services.msc, find Windows Image Acquisition (WIA), set Startup type to Automatic and Start. Then in Windows Fax and Scan, click New Scan → Change → pick scanner. If scanner doesn’t appear, install the manufacturer’s WIA driver. You … Read more

How to Use Robocopy With Progress and Resume on Windows 11

Quick fix: From Terminal, run robocopy "source" "destination" /E /MT:8 /R:3 /W:5 /ETA /TEE /LOG+:robocopy.log. The /E copies all subfolders, /MT:8 multi-threads, /R:3 /W:5 retries 3 times with 5-second waits, /ETA shows estimated time, /TEE logs to console AND file. Resume by re-running the same command — robocopy skips already-copied files. Robocopy is the most … Read more

How to Reset App Permissions Without Reinstalling Apps on Windows 11

Quick fix: Open Settings → Privacy & security. For each permission (Camera, Microphone, Location, etc.) listed in the sidebar, click to open. Set system-wide toggle on, then disable/re-enable per-app permissions. Or use Settings → Apps → Installed apps → [app] → Advanced options → Reset to reset all permissions for one app. An app lost … Read more

How to Mount the Hidden Recovery Partition on Windows 11

Quick fix: From Terminal (Admin), use diskpart: diskpart → list volume → identify Recovery partition (~500 MB, FAT32) → select volume N → assign letter=R. Recovery partition is now accessible at R: in File Explorer. Browse contents, but don’t modify Microsoft-owned files. After inspection: remove letter=R. You want to inspect the hidden Recovery partition — … Read more