Why Network Discovery Keeps Turning Off in Windows 11 and How to Lock It On

Quick fix: Open Services (services.msc). Set these services to Automatic and Start: Function Discovery Provider Host, Function Discovery Resource Publication, SSDP Discovery, UPnP Device Host. Network Discovery depends on all four; if any stops, the feature reverts to Off. You enable Network Discovery in Advanced Sharing Settings. Reboot the PC. Network Discovery is Off again. … Read more

How to Map a Network Drive From the Command Line on Windows 11

Quick fix: From Terminal, run net use Z: \\Server\Share /user:DOMAIN\username password /persistent:yes. Replace Z: with desired letter, server path, credentials. The /persistent:yes flag reconnects on next login. To list current maps: net use. To remove: net use Z: /delete. You want to mount a network share as a drive letter programmatically — for scripts, logon … 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

How to Enable SMB1 Safely for Legacy NAS Access on Windows 11

Quick fix: SMB1 is disabled by default in Windows 11 for security. To enable just the client (for accessing legacy NAS): open Terminal (Admin) and run Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol-Client -NoRestart. Reboot. Don’t enable SMB1 server. Plan to retire the legacy NAS — SMB1 has known critical vulnerabilities. Your old NAS (Synology DSM 5.x or … Read more

Why Windows 11 Firewall Blocks Trusted Apps and How to Allow Them

Quick fix: Windows Defender Firewall sometimes blocks legitimate apps. Open Settings → Privacy & security → Windows Security → Firewall & network protection → Allow an app through firewall. Click Change settings then Allow another app. Browse to the app’s EXE. Tick both Private and Public network checkboxes. An app you trust (game, IDE, server … Read more

Why Public Wi-Fi Logins Don’t Pop Up on Windows 11 and How to Trigger Them

Quick fix: Captive portal sign-in page didn’t auto-open? Manually trigger by visiting http://neverssl.com in your browser. The portal intercepts unencrypted HTTP and shows its sign-in. Or open http://msftconnecttest.com/redirect — Windows’s own test endpoint. Don’t use HTTPS sites; HTTPS may bypass portal interception. You connect to airport, hotel, or cafe Wi-Fi. The captive portal sign-in page … Read more

Why Windows 11 Splits Network Traffic Across Adapters and How to Stop It

Quick fix: Set explicit interface metrics to prioritize one adapter. Open Terminal (Admin) and run Set-NetIPInterface -InterfaceAlias "Ethernet" -InterfaceMetric 5 (low = preferred). Then Set-NetIPInterface -InterfaceAlias "Wi-Fi" -InterfaceMetric 50. Lower metric wins. Restart network adapter or PC. Your laptop has both Ethernet and Wi-Fi connected. Some apps use Ethernet, some use Wi-Fi. VPN traffic confusingly … Read more