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 Senior Member

    Apr 3, 2019
    373
    119
    10
    #1 Shortyportuguese, Feb 9, 2020
    Last edited: Feb 11, 2020
  2. vladnil

    vladnil MDL Senior Member

    Jan 19, 2019
    463
    317
    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
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Shortyportuguese

    Shortyportuguese MDL Senior Member

    Apr 3, 2019
    373
    119
    10
     
  4. vladnil

    vladnil MDL Senior Member

    Jan 19, 2019
    463
    317
    10

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,359
    7,078
    210
    As I was tagged: Sorry, I don't use servers.
     
  6. eVYGI7

    eVYGI7 MDL Novice

    Mar 20, 2019
    37
    10
    0
    Does Windows Server 2019 or Server 2019 LTSC has telemetry?
     
  7. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream

    Dec 21, 2012
    6,359
    7,078
    210
  8. xkp

    xkp MDL Novice

    Oct 28, 2017
    40
    8
    0
    Awesome i wish to ask if this can run programs like games or programs (World of Warcraft) ( Steam , Bnet Launcher)
     
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,703
    13,709
    340
  10. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,897
    10,733
    240
    hello xinso now is a good time to download and install .Net Framework V5 :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. JLBENEDICT

    JLBENEDICT MDL Junior Member

    Dec 5, 2013
    61
    38
    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?