Fix Hyper-V Default Switch Losing Internet Sharing After Reboot

After you reboot a Windows 11 host running Hyper-V, the Default Switch may stop sharing the host’s internet connection with guest virtual machines. This leaves VMs unable to reach the internet even though the host can connect normally. The root cause is that Windows Networking settings or the Hyper-V Virtual Switch service fail to restore … Read more

How to Block Outbound Telemetry to Specific Endpoints with Windows Firewall

Windows 11 and Windows 10 send diagnostic data to Microsoft servers by default. This telemetry includes system health checks, error reports, and usage statistics. While some data helps with security updates, many business users want to limit what leaves their network. Blocking outbound traffic to specific endpoints using Windows Firewall gives you control without disabling … Read more

How to Disable Network Discovery on Public Profiles via PowerShell

Quick fix: Run Set-NetFirewallProfile -Profile Public -Enabled True; Get-NetFirewallRule -DisplayGroup “Network Discovery” | Where-Object Profile -like “*Public*” | Disable-NetFirewallRule in elevated PowerShell. Network discovery is now off on every Public profile network the PC connects to. You want public-network protection: when on coffee shop Wi-Fi, hotel networks, or any untrusted connection, your PC shouldn’t advertise … Read more

Why Wi-Fi 7 Negotiates as Wi-Fi 6 Despite Supporting Hardware

Quick fix: Wi-Fi 7 (802.11be) requires the latest adapter driver, an OS build of 24H2 or later, and a router with up-to-date firmware. Even with all three, the connection often negotiates as Wi-Fi 6E if Multi-Link Operation (MLO) or 320 MHz channel width isn’t enabled on the router. Confirm router settings, update Intel/Qualcomm driver, and … Read more

Fix VPN Split Tunneling Ignoring Routes After Sleep on Windows 11

Quick fix: After sleep, Windows’ route table partially rebuilds — sometimes losing the VPN split-tunnel routes added via route add. Re-establish the VPN connection, or set up a Task Scheduler task triggered by “On wake” that re-runs your routing script automatically. Your VPN client uses split tunneling: only specific subnets go through the VPN, everything … Read more

How to Set a Static IPv6 Address Without Disabling Privacy Extensions

Quick fix: Set an IPv6 address manually via netsh interface ipv6 add address “Ethernet” fe80::abcd:1 type=anycast for a stable address, while keeping privacy extensions enabled with netsh interface ipv6 set privacy state=enabled. The anycast type ensures the static address coexists with the privacy-generated temporary addresses. Your IPv6 setup uses SLAAC (router advertisements) by default, which … Read more

Fix MTU Mismatch Causing PMTU Black Hole on a Windows 11 VPN

Quick fix: When VPN MTU is smaller than the LAN MTU and the network drops ICMP, Path MTU Discovery fails — small packets work, large packets disappear. Set Windows’ MTU on the VPN adapter to a known-safe value (1300 or lower) via netsh interface ipv4 set subinterface “VPN Connection” mtu=1300 store=persistent. You connect to the … Read more

How to Disable IPv6 Selectively per Adapter on Windows 11

Quick fix: Open Control Panel → Network and Sharing Center → Change adapter settings, right-click the adapter → Properties, untick Internet Protocol Version 6 (TCP/IPv6). This disables IPv6 on that one adapter only and leaves it active on others (e.g., VPN, virtual switches). You want to disable IPv6 on your physical Wi-Fi adapter because your … Read more