Monday, 26 January 2015

Limited WiFi Connection Problem in Windows 8.1

After installing the Windows 8.1, wireless connection keep dropping saying "Limited Connectivity". To resolve this issue:

Open "Command Prompt" as administrator and issue the following commands in sequence:

    1. netsh int tcp set heuristics disabled
    2. netsh int tcp set global autotuninglevel=disabled
    3. netsh int tcp set global rss=enabled
    4. netsh int tcp show global
    5. Restart the computer

No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...