Rediģēt

Kopīgot, izmantojot


Turn on network protection

Applies to:

Platforms

Tip

Want to experience Defender for Endpoint? Sign up for a free trial.

Network protection helps to prevent employees from using any application to access dangerous domains that might host phishing scams, exploits, and other malicious content on the internet. You can audit network protection in a test environment to view which apps would be blocked before enabling network protection.

Learn more about network filtering configuration options.

Check if network protection is enabled

You can use Registry Editor to check the status of network protection.

  1. Select the Start button in the task bar and type regedit. In the list of results, select Registry editor to open it.

  2. Choose HKEY_LOCAL_MACHINE from the side menu.

  3. Navigate through the nested menus to SOFTWARE > Policies > Microsoft > Windows Defender > Policy Manager.

    If the key is missing, navigate to SOFTWARE > Microsoft > Windows Defender > Windows Defender Exploit Guard > Network Protection.

  4. Select EnableNetworkProtection to see the current state of network protection on the device:

    • 0, or Off
    • 1, or On
    • 2, or Audit mode

    Network Protection registry key

Enable network protection

To enable network protection, you can use one of the following methods:

PowerShell

  1. On your Windows device, select Start, type powershell, right-click Windows PowerShell, and then select Run as administrator.

  2. Run the following cmdlet:

    Set-MpPreference -EnableNetworkProtection Enabled
    
  3. For Windows Server, use the additional commands that listed in the following table:

    Windows Server version Commands
    Windows Server 2022 and later set-mpPreference -AllowNetworkProtectionOnWinServer $true
    Windows Server 2016
    Windows Server 2012 R2
    set-MpPreference -AllowNetworkProtectionDownLevel $true
    set-MpPreference -AllowNetworkProtectionOnWinServer $true
  4. (This step is optional.) To set network protection to audit mode, use the following cmdlet:

    Set-MpPreference -EnableNetworkProtection AuditMode
    

    To turn off network protection, use the Disabled parameter instead of AuditMode or Enabled.

Mobile device management (MDM)

  1. Use the EnableNetworkProtection configuration service provider (CSP) to enable or disable network protection or enable audit mode.

  2. Update Microsoft Defender antimalware platform to the latest version before you enable or disable network protection or enable audit mode.

Microsoft Intune

Microsoft Defender for Endpoint Baseline method

  1. Sign into the Microsoft Intune admin center.

  2. Go to Endpoint security > Security baselines > Microsoft Defender for Endpoint Baseline.

  3. Select Create a profile, then provide a name for your profile, and then select Next.

  4. In the Configuration settings section, go to Attack Surface Reduction Rules > set Block, Enable, or Audit for Enable network protection. Select Next.

  5. Select the appropriate Scope tags and Assignments as required by your organization.

  6. Review all the information, and then select Create.

Antivirus policy method

  1. Sign into the Microsoft Intune admin center.

  2. Go to Endpoint security > Antivirus.

  3. Select Create a policy.

  4. In the Create a policy flyout, choose Windows 10, Windows 11, and Windows Server from the Platform list.

  5. Choose Microsoft Defender Antivirus from the Profile list then choose Create.

  6. Provide a name for your profile, and then select Next.

  7. In the Configuration settings section, select Disabled, Enabled (block mode) or Enabled (audit mode) for Enable Network Protection, then select Next.

  8. Select the appropriate Assignments and Scope tags as required by your organization.

  9. Review all the information, and then select Create.

Configuration profile method

  1. Sign into the Microsoft Intune admin center (https://intune.microsoft.com).

  2. Go to Devices > Configuration profiles > Create profile.

  3. In the Create a profile flyout, select Platform and choose the Profile Type as Templates.

  4. In the Template name, Choose Endpoint protection from the list of templates, and then select Create.

  5. Go to Endpoint protection > Basics, provide a name for your profile, and then select Next.

  6. In the Configuration settings section, go to Microsoft Defender Exploit Guard > Network filtering > Network protection > Enable or Audit. Select Next.

  7. Select the appropriate Scope tags, Assignments, and Applicability rules as required by your organization. Admins can set more requirements.

  8. Review all the information, and then select Create.

Group Policy

Use the following procedure to enable network protection on domain-joined computers or on a standalone computer.

  1. On a standalone computer, go to Start and then type and select Edit group policy.

    -Or-

    On a domain-joined Group Policy management computer, open the Group Policy Management Console, right-click the Group Policy Object you want to configure and select Edit.

  2. In the Group Policy Management Editor, go to Computer configuration and select Administrative templates.

  3. Expand the tree to Windows components > Microsoft Defender Antivirus > Microsoft Defender Exploit Guard > Network protection.

    Note that on older versions of Windows, the Group Policy path might have Windows Defender Antivirus instead of Microsoft Defender Antivirus.

  4. Double-click the Prevent users and apps from accessing dangerous websites setting and set the option to Enabled. In the options section, you must specify one of the following options:

    • Block - Users can't access malicious IP addresses and domains.
    • Disable (Default) - The Network protection feature won't work. Users aren't blocked from accessing malicious domains.
    • Audit Mode - If a user visits a malicious IP address or domain, an event will be recorded in the Windows event log. However, the user won't be blocked from visiting the address.

    Important

    To fully enable network protection, you must set the Group Policy option to Enabled and also select Block in the options drop-down menu.

  5. (This step is optional.) Follow the steps in Check if network protection is enabled to verify that your Group Policy settings are correct.

Microsoft Configuration Manager

  1. Open the Configuration Manager console.

  2. Go to Assets and Compliance > Endpoint Protection > Windows Defender Exploit Guard.

  3. Select Create Exploit Guard Policy from the ribbon to create a new policy.

    • To edit an existing policy, select the policy, then select Properties from either the ribbon or the right-click menu. Edit the Configure network protection option from the Network Protection tab.
  4. On the General page, specify a name for the new policy and verify the Network protection option is enabled.

  5. On the Network protection page, select one of the following settings for the Configure network protection option:

    • Block
    • Audit
    • Disabled
  6. Complete the rest of the steps, and save the policy.

  7. From the ribbon, select Deploy to deploy the policy to a collection.

Important information about removing Exploit Guard settings from a device

Once an Exploit Guard policy is deployed using Configuration Manager, Exploit Guard settings aren't removed from the clients if you remove the deployment. Furthermore, if you remove the client's Exploit Guard deployment, Delete not supported is recorded in the client's ExploitGuardHandler.log in Configuration Manager.

Use the following PowerShell script in the SYSTEM context to remove Exploit Guard settings correctly:

$defenderObject = Get-WmiObject -Namespace "root/cimv2/mdm/dmmap" -Class "MDM_Policy_Config01_Defender02" -Filter "InstanceID='Defender' and ParentID='./Vendor/MSFT/Policy/Config'"
$defenderObject.AttackSurfaceReductionRules = $null
$defenderObject.AttackSurfaceReductionOnlyExclusions = $null
$defenderObject.EnableControlledFolderAccess = $null
$defenderObject.ControlledFolderAccessAllowedApplications = $null
$defenderObject.ControlledFolderAccessProtectedFolders = $null
$defenderObject.EnableNetworkProtection = $null
$defenderObject.Put()

$exploitGuardObject = Get-WmiObject -Namespace "root/cimv2/mdm/dmmap" -Class "MDM_Policy_Config01_ExploitGuard02" -Filter "InstanceID='ExploitGuard' and ParentID='./Vendor/MSFT/Policy/Config'"
$exploitGuardObject.ExploitProtectionSettings = $null
$exploitGuardObject.Put()

See also

Tip

Do you want to learn more? Engage with the Microsoft Security community in our Tech Community: Microsoft Defender for Endpoint Tech Community.