1. ogoriaipfds

    ogoriaipfds MDL Novice

    Feb 12, 2020
    17
    1
    0
  2. ogoriaipfds

    ogoriaipfds MDL Novice

    Feb 12, 2020
    17
    1
    0
    MSMG,

    What is the name of this service, or did they hide it from the interface?
    HKLM\SYSTEM\ControlSet001\Services\Ndu

    Sysmain / superfetch has a different registry key

    p.s
    I could not find where it turns off differently!
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    I think they have moved the search indexing related stuffs to Settings Apps -> Search section.

     
  4. Igor147

    Igor147 MDL Member

    Oct 20, 2016
    162
    75
    10
    Let me know the results. Thanks in advance.
     
  5. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. exitcause

    exitcause MDL Novice

    Nov 4, 2016
    1
    0
    0
    Sorry if this is already covered, is the 2004 ISO supported for removing apps?
     
  7. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    #14150 zero cool root, Feb 19, 2020
    Last edited: Feb 19, 2020
    @MSMG

    Please, how to disable in registry:

    Real-time Protection
    Cloud-delivered protection
    Automatic sample submission
    Tamper Protection
    Disable Automatic Windows Upgrade
    Disable Windows Update

    Thanks in advance..!!
     
  8. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    491
    284
    10
    #14151 Yanta, Feb 20, 2020
    Last edited: Mar 21, 2020
    Deleted
     
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Windows 10 v2004 is not supported but you can use the Remove Apps using Apps List method in ToolKit which uses the DISM to remove the Apps.

     
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    I have uploaded a updated Toolkit pack for Edge Chromium for Windows 10 and have tested both the x86 + x64 packs with Update service working.

    Please do test and report back if any issues are found.
     
  11. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    #14154 MSMG, Feb 20, 2020
    Last edited: Feb 20, 2020
    (OP)
    Code:
    Windows Registry Editor Version 5.00
    
    ; Disable Microsoft SpyNet membership
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet]
    "SpyNetReporting"=dword:00000000
    
    ; Disable submitting data samples to Microsoft
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet]
    "SubmitSamplesConsent"=dword:00000002
    
    ; Disable reporting of malware infection information
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MRT]
    "DontReportInfectionInformation"=dword:00000001
    
    ; Disable Windows Defender
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender]
    "DisableAntiSpyware"=dword:00000001
    
    ; Disable Windows Defender Realtime Monitoring
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender]
    "DisableRealtimeMonitoring"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection]
    "DisableBehaviorMonitoring"=dword:00000001
    "DisableOnAccessProtection"=dword:00000001
    "DisableScanOnRealtimeEnable"=dword:00000001
    
    ; Disable Windows Defender Tamper Protection
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Features]
    "TamperProtection"=dword:00000000
    
    ; Disable Windows Updates via peer-to-peer
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config]
    "DODownloadMode"=dword:00000000
    
    ; Disable Windows Updates via peer-to-peer
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DeliveryOptimization]
    "DODownloadMode"=dword:00000000
    
    ; Disable Windows Updates via peer-to-peer
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization]
    "SystemSettingsDownloadMode"=dword:00000000
    
    ; Disable Updates to the speech recognition and speech synthesis modules
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Speech]
    "AllowSpeechModelUpdate"=dword:00000000
    
    ; Activate deferring of upgrades
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    "DeferUpgrade"=dword:00000001
    "DeferUpgradePeriod"=dword:00000001
    "DeferUpdatePeriod"=dword:00000000
    
    ; Disalbe automatic downloading manufacturers apps and icons for devices
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Device Metadata]
    "PreventDeviceMetadataFromNetwork"=dword:00000001
    
    ; Disalbe automatic driver updates through Windows Update
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    "ExcludeWUDriversInQualityUpdate"=dword:00000001
    
    ; Disalbe automatic app updates through Windows Update
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\WindowsUpdate]
    "AutoDownload"=dword:00000002
    
    ; Disalbe automatic Windows Updates
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
    "NoAutoUpdate"=dword:00000001
    
    ; Disalbe automatic Windows Updates
    [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\wuauserv]
    "Start"=dword:00000004
    
    ; Disalbe Windows Updates for other Microsoft products
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Services\7971f918-a847-4430-9279-4a52d1efe18d]
    "RegisteredWithAU"=dword:00000000
    
    
     
  12. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    For 1909..??

    Tamper Protection..?? Don't need..??
     
  13. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    I have updated my previous post with the tweak to disable Tamper Protection.

     
  14. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    Thank you so much..!!
     
  15. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    Will test later when I have more time to do so.

    My mistake, I thought there was an updated ToolKitHelper.exe.
     
  16. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Think you missed my earlier post, there are no major changes in the current CU and so component removal is not affected.

     
  17. amnester

    amnester MDL Junior Member

    Nov 9, 2018
    72
    18
    0
    Hi. I tried integrating edgechrome Via NSudo. I did everything you said before. When you enter the first line of code, everything is fine. But, when you insert the second line of code (reg import Packs\EdgeChromium\EdgeChromium_x64.reg ), then there is an error: an Error when accessing the registry. Maybe I'm not working correctly with NSudo...