Critique my Win10 update Disabler script

Discussion in 'Windows 10' started by eatup, Dec 18, 2016.

  1. eatup

    eatup MDL Member

    Jun 22, 2014
    204
    8
    10
    #1 eatup, Dec 18, 2016
    Last edited by a moderator: Apr 20, 2017
    Critique my cmd script below meant to permanently disable windows update in Win10. What services have I left out?

    Code:
    :start
    Net stop "BITS" 
    Sc config "BITS" start=disabled
    Net stop "wuauserv"
    Sc config "wuauserv" start=disabled
    Timeout 300
    Goto start
    Pause
    P.S: I set timeout to 5 minutes cuz my eMMC drive can't handle too many rewrites/erase cycles. Otherwise it would have been 1-2 seconds on a normal HDD...
     
  2. eatup

    eatup MDL Member

    Jun 22, 2014
    204
    8
    10
    Also what services do I need to stop to completely disable telemetry, etc?
     
  3. Nucleus

    Nucleus MDL Guru

    Aug 4, 2009
    2,868
    2,950
    90
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,055
    60
    Network Store Interface Service and its dependencies, without it Windows assumes, there is no internet and will not even try to connect anywhere.
    You have to setup static IP and DNS servers manually though to be able to connect. Windows Update and store apps will also fail without it. :druff:
     
  5. eatup

    eatup MDL Member

    Jun 22, 2014
    204
    8
    10
    #5 eatup, Dec 20, 2016
    Last edited: Dec 20, 2016
    (OP)
    Here's my updated cmd script to kill off windows update and telemetry too. What did I miss/leave out?

    P.S. script set to loop every 15 minutes (in case Windows 10 re-enables any service by "sneak attack"), but you can change it by modifying timeout...
     
  6. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,362
    210
    #8 lobo11, Dec 21, 2016
    Last edited: Dec 21, 2016
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Espionage724

    Espionage724 MDL Expert

    Nov 7, 2009
    1,066
    394
    60
  9. eatup

    eatup MDL Member

    Jun 22, 2014
    204
    8
    10
    My updated script with above changes AND disable nasty AllowExperimentation registry key as well: