Windows 10 1607 vs 1703. I need a good explanation

Discussion in 'Windows 10' started by Epa, Apr 14, 2017.

  1. Epa

    Epa MDL Novice

    Apr 8, 2017
    31
    6
    0
    I just installed 1703 (15063) and to my surprise these are the tasks running in background.
    Note, this is a fresh, just installed OS:

    i.imgur.com/XelOL7O.png

    and the list goes on

    i.imgur.com/By1A7AD.png

    Compared to the 1607 (14393):

    i.imgur.com/SwycBh4.png

    No wonder why I feel that was lagged and bloated.

    There is any a good reason of all that monstrosity running n the background?. There is any way to disable all of that?.


    DAMN. I cant post links?!

    EDIT. Im going to upload the images here, so, excuse me my deprivation, its not my fault
     

    Attached Files:

  2. ch4os

    ch4os MDL Junior Member

    Jan 9, 2010
    99
    110
    0
  3. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,736
    240
    @ch4os thanks a lot for very good info dude :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    #4 s1ave77, Apr 14, 2017
    Last edited by a moderator: Apr 20, 2017
    For all who still want to disable. Avoid svhost splitting by setting threshold slightly higher than system RAM amount in kB:

    Code:
    ::Set Split Threshold for Svchost in Windows 10 RS2
    ::RAM: 16 GB
    reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v "SvcHostSplitThresholdInKB" /t REG_DWORD /d "16800000" /f
    ::RAM: 8 GB
    reg add "HKLM\SYSTEM\CurrentControlSet\Control" /v "SvcHostSplitThresholdInKB" /t REG_DWORD /d "8390000" /f
    :: -------------------------------------------------------------------------------------------------------------------------------------------------
    ::UNDO Set Split Threshold for Svchost in Windows 10 RS2
    reg delete "HKLM\SYSTEM\CurrentControlSet\Control" /v "SvcHostSplitThresholdInKB" /f
    :: -------------------------------------------------------------------------------------------------------------------------------------------------
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...