How to make Windows Server 2019 looks like a desktop version?

Discussion in 'Windows Server' started by Shortyportuguese, Feb 9, 2020.

  1. Shortyportuguese

    Shortyportuguese MDL Member

    Joined:
    Apr 3, 2019
    Messages:
    194
    Likes Received:
    47
    Trophy Points:
    10
    #1 Shortyportuguese, Feb 9, 2020
    Last edited: Feb 11, 2020
  2. vladnil

    vladnil MDL Member

    Joined:
    Jan 19, 2019
    Messages:
    243
    Likes Received:
    164
    Trophy Points:
    10

    REMOVING WINDOWS DEFENDER

    In the command prompt, type:

    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v SmartScreenEnabled /t REG_SZ /d "Off" /f
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d "0" /f
    reg add "HKCU\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppContainer\Storage\microsoft.microsoftedge_8wekyb3d8bbwe\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t REG_DWORD /d "0" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SpyNetReporting /t REG_DWORD /d 0 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v SubmitSamplesConsent /t REG_DWORD /d 2 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet" /v DontReportInfectionInformation /t REG_DWORD /d 1 /f
    reg delete "HKLM\SYSTEM\CurrentControlSet\Services\Sense" /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v "DontReportInfectionInformation" /t REG_DWORD /d 1 /f
    reg add "HKLM\SOFTWARE\Policies\Microsoft\MRT" /v "DontOfferThroughWUAU" /t REG_DWORD /d 1 /f
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "SecurityHealth" /f
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run" /v "SecurityHealth" /f
    reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\SecHealthUI.exe" /v Debugger /t REG_SZ /d "%windir%\System32\taskkill.exe" /f
    install_wim_tweak /o /c Windows-Defender /r
    reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.SecurityAndMaintenance" /v "Enabled" /t REG_DWORD /d 0 /f
    reg delete "HKLM\SYSTEM\CurrentControlSet\Services\SecurityHealthService" /f
     
  3. Shortyportuguese

    Shortyportuguese MDL Member

    Joined:
    Apr 3, 2019
    Messages:
    194
    Likes Received:
    47
    Trophy Points:
    10
  4. Shortyportuguese

    Shortyportuguese MDL Member

    Joined:
    Apr 3, 2019
    Messages:
    194
    Likes Received:
    47
    Trophy Points:
    10
     
  5. vladnil

    vladnil MDL Member

    Joined:
    Jan 19, 2019
    Messages:
    243
    Likes Received:
    164
    Trophy Points:
    10

    Attached Files:

  6. Shortyportuguese

    Shortyportuguese MDL Member

    Joined:
    Apr 3, 2019
    Messages:
    194
    Likes Received:
    47
    Trophy Points:
    10
  7. Carlos Detweiller

    Carlos Detweiller MDL Spinning Tortoise

    Joined:
    Dec 21, 2012
    Messages:
    4,514
    Likes Received:
    4,543
    Trophy Points:
    150
    As I was tagged: Sorry, I don't use servers.
     
  8. eVYGI7

    eVYGI7 MDL Novice

    Joined:
    Mar 20, 2019
    Messages:
    32
    Likes Received:
    8
    Trophy Points:
    0
    Does Windows Server 2019 or Server 2019 LTSC has telemetry?
     
  9. Carlos Detweiller

    Carlos Detweiller MDL Spinning Tortoise

    Joined:
    Dec 21, 2012
    Messages:
    4,514
    Likes Received:
    4,543
    Trophy Points:
    150
  10. xkp

    xkp MDL Novice

    Joined:
    Oct 28, 2017
    Messages:
    39
    Likes Received:
    8
    Trophy Points:
    0
    Awesome i wish to ask if this can run programs like games or programs (World of Warcraft) ( Steam , Bnet Launcher)
     
  11. furtilizer

    furtilizer MDL Novice

    Joined:
    Nov 1, 2010
    Messages:
    20
    Likes Received:
    5
    Trophy Points:
    0
  12. xinso

    xinso MDL Guru

    Joined:
    Mar 5, 2009
    Messages:
    6,268
    Likes Received:
    8,659
    Trophy Points:
    210
  13. Tiger-1

    Tiger-1 MDL Guru

    Joined:
    Oct 18, 2014
    Messages:
    6,209
    Likes Received:
    7,533
    Trophy Points:
    210
    hello xinso now is a good time to download and install .Net Framework V5 :)
     
  14. JLBENEDICT

    JLBENEDICT MDL Novice

    Joined:
    Dec 5, 2013
    Messages:
    3
    Likes Received:
    1
    Trophy Points:
    0

    Regarding "removing Windows Defender" from Server 2019.... in my lab, on my 2019 Servers.. i typically will just run the following powershell command -
    "Uninstall-WindowsFeature Windows-Defender"


    What is left behind from the above items, if only using the uninstall defender feature?