Defender Control V1.0

Discussion in 'Windows 10' started by wtarkan, Jul 3, 2015.

  1. wtarkan

    wtarkan MDL Member

    Sep 1, 2009
    194
    379
    10
  2. z0nk

    z0nk MDL Novice

    Aug 25, 2009
    8
    2
    0
    #2 z0nk, Jul 5, 2015
    Last edited: Jul 5, 2015
    great job!
    I will add some useful PS cmdlets that are working in windows 10
    Realtime monitoring
    disable = Set-MpPreference -DisableRealtimeMonitoring $true
    enable = Set-MpPreference -DisableRealtimeMonitoring $false

    Antivirus:
    disable = Set-MpPreference -DisableIOAVProtection $true
    enable = Set-MpPreference -DisableIOAVProtection $false

    IPS (firewall/connection issues):
    disable = Set-MpPreference -DisableIntrusionPreventionSystem $true
    enable = Set-MpPreference -DisableIntrusionPreventionSystem $false

    disable scan of removable drives:
    disable = Set-MpPreference -DisableRemovableDriveScanning $true
    enable = Set-MpPreference -DisableRemovableDriveScanning $false

    View current status:
    Get-MpPreference | select disable*

    other properties can be also set in same method as above.

    So in result you can manage windows defender without ingrate with service, that can be always running.
     
  3. Alexsiym

    Alexsiym MDL Novice

    Apr 30, 2021
    5
    0
    0
    Доброго ! Очень Нужна Эта Версия - Defender Control v1.0 !!! Пожалуйста Ссылку !
     
  4. Please do cross check via elevated command prompt :

    Code:
    Powershell -Command "Get-MpPreference"
    if everything found true in disabled & false in enabled results of defender policies .

    In my case / scenario permanent removal of defender script is already there so that user can install thrid party av on os without any fear that theres anything in control of defender vai any hidden pwsh script there inside os :
    Permanently disable Defender to Use Third Party AV