[DISCUSSION] Windows 10 Demoted Back to Insider Preview 17133.1 (PC) [RS4_Release]

Discussion in 'Windows 10' started by Enthousiast, Mar 27, 2018.

  1. AveYo

    AveYo MDL Expert

    Feb 10, 2009
    1,836
    5,745
    60
    For nothing. Is shoveled down your throat so that NSA can have an easily exploitable backdoor on your device. Unfortunately is made in such way that you can't actually remove it - even if you don't install the OS part, it can be installed remotely by an operator with network access. And you can even have issues with power management (sleep states, hyper threading, power management) without the OS driver.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. Ratha ITC

    Ratha ITC MDL Member

    Jul 13, 2013
    249
    143
    10
    All drivers including Intel ME which were working on RS3 are working fine on this RS4 too. See my screenshot for Intel ME.

    Screenshot (5).png

    Screenshot (5).png
     
  3. dzem

    dzem MDL Senior Member

    Oct 15, 2015
    275
    56
    10
    I have two questions:

    How to change fonts in this build/update

    and

    Can i disable windows defender and how?
     
  4. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    group policy help
    Run - gpedit.msc
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Rickta

    Rickta MDL Novice

    Nov 8, 2017
    21
    19
    0
  6. andrews

    andrews MDL Novice

    Jul 31, 2009
    44
    19
    0
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    52,048
    114,413
    450
    Please, stop spreading this nonsense.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,766
    1,002
    180
    But my PC is old : Inte core due e6750 and maybe it's about new PC.
    I think I will not install Intel ME. I don't think it help me about something.
     
  9. dzem

    dzem MDL Senior Member

    Oct 15, 2015
    275
    56
    10
    any further explanation ...
     
  10. DontuZoru

    DontuZoru MDL Senior Member

    Mar 6, 2014
    273
    131
    10
    Best RTM since 1607..
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    #1093 windows builder, Apr 5, 2018
    Last edited by a moderator: Apr 5, 2018
    Code:
    Windows Registry Editor Version 5.00
    
    ;Windows Defender Security Center Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SecurityHealthService]
    "Start"=dword:00000004
    
    ;Windows Defender Antivirus Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WinDefend]
    "Start"=dword:00000004
    
    ;Windows Defender Antivirus Network Inspection Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdNisSvc]
    "Start"=dword:00000004
    
    ;Windows Defender Antivirus Network Inspection System Driver
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdNisDrv]
    "Start"=dword:00000004
    
    ;Windows Defender Advanced Threat Protection Service
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sense]
    "Start"=dword:00000004
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,766
    1,002
    180
    My version is : 11802.1001.11.0.
     
  13. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,404
    340
    #1095 s1ave77, Apr 5, 2018
    Last edited: Apr 5, 2018
    Better use [CODE][/CODE] tags for such stuff :D.

    Code:
    ::Windows Defender Security Center Service
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\SecurityHealthService" /v "Start" /t REG_DWORD /d "4" /f
    ::Windows Defender Antivirus Service
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\WinDefend" /v "Start" /t REG_DWORD /d "4" /f
    ::Windows Defender Antivirus Network Inspection Service
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\WdNisSvc" /v "Start" /t REG_DWORD /d "4" /f
    ::Windows Defender Antivirus Network Inspection System Driver
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\WdNisDrv" /v "Start" /t REG_DWORD /d "4" /f
    ::Windows Defender Advanced Threat Protection Service
    reg add "HKLM\SYSTEM\CurrentControlSet\Services\Sense" /v "Start" /t REG_DWORD /d "4" /f
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    2018-04-05 001.png
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,766
    1,002
    180
  16. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    yes
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. windows builder

    windows builder MDL Guru

    Sep 13, 2017
    2,219
    1,555
    90
    what's the difference?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,404
    340
    It's the REG converted to CMD commands.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...