How to Force File Explorer to Open in This PC Instead of Home on Windows 11

Quick fix: Open File Explorer, click the three-dot menu in the toolbar → Options. On the General tab, set Open File Explorer to: to This PC instead of Home. Click OK. Every new File Explorer window now opens at This PC. Windows 11’s default File Explorer launch view is Home — the OneDrive-integrated, Recent files-heavy … Read more

How to Get Open in Terminal Back to Right-Click Menu on Windows 11

Quick fix: Open Windows Terminal Settings (Ctrl + ,) → Startup. Ensure “Open Windows Terminal here” option in folder context menus is toggled On. If missing or greyed out, reinstall Windows Terminal from Microsoft Store, then run wt –version in cmd to register the shell extension. Right-click a folder, expand the context menu — “Open … Read more

Why Some File Thumbnails Are Black on Windows 11 and How to Fix Them

Quick fix: Some file thumbnails (especially HEIC, RAW, and some PDFs) appear black because Windows lacks the necessary preview handler. Install HEIF Image Extensions + Raw Image Extension from Microsoft Store. For PDFs, install Adobe Reader or set Edge as the default PDF handler. For other corrupted thumbnails, delete %LocalAppData%\Microsoft\Windows\Explorer\thumbcache_*.db and restart Explorer. You open … Read more

How to Unblock Downloaded Files in Bulk With PowerShell on Windows 11

Quick fix: Run Get-ChildItem -Path C:\Downloads -Recurse | Unblock-File from an elevated PowerShell to remove the “downloaded from the Internet” flag (Zone.Identifier stream) on every file under a folder at once. This bypasses the “This file came from another computer” warning without disabling SmartScreen. Windows 11 marks every file downloaded by a browser, email client, … Read more

Fix File Explorer Tabs Reordering on Every Launch in Windows 11

Quick fix: File Explorer in 23H2 and earlier doesn’t persist tab order — tabs reopen at default state on every launch. Update to 24H2 or later (which fixes this), or use the registry value HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Modules\NavPane\PinnedToTop to pin frequently-used tabs to consistent positions. You opened File Explorer, set up four tabs in a specific order (Downloads, … Read more

How to Show File Extensions for All Users on Windows 11

Quick fix: Set the registry value at HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced with DWORD HideFileExt = 0, then deploy via Group Policy Preferences or run a logon script. The HKLM setting applies before per-user HKCU values are read. You’re an admin managing many PCs and want every user to see file extensions in File Explorer by default. The per-user … Read more