Registry Tweak to Disable MS Communication?

Discussion in 'Windows 10' started by boyonthebus, Jun 6, 2019.

  1. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    752
    60
    I found that this registry edit will disable all communications (AFAIK) to Microsoft. It does need further investigation though. When run the internet icon in the tray shows disconnected, but internet access is fine except for all things Microsoft. With the new 20H1 build it can be turned off and on by substituting in a 1 or a 0 then restarting.

    Block MS
    Code:
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet" /v "EnableActiveProbing" /t REG_DWORD /d "0" /f
    Allow MS
    Code:
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\NlaSvc\Parameters\Internet" /v "EnableActiveProbing" /t REG_DWORD /d "1" /f
    I would appreciate further investigation into this matter, along with comments.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,316
    7,022
    210
    No, it only prevents Windows from actively checking online state (through the MSFT NCSI server). It does block no further communication.
     
  3. boyonthebus

    boyonthebus MDL Expert

    Sep 16, 2018
    1,168
    752
    60
    Thanks bud!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...