From 456e3f6eb97851f62131d29d692151dac2ca7151 Mon Sep 17 00:00:00 2001 From: Marty Hernandez Avedon Date: Mon, 17 Jun 2019 11:20:04 -0400 Subject: [PATCH] Minor typo; Fixes #4066 >"Set-ProcesMitigation" is missing an "s" in the below example: >For example, to enable Arbitrary Code Guard (ACG) in audit mode for the testing.exe used in the example above, you'd use the following command: >PowerShell >Copy >Set-ProcesMitigation -Name c:\apps\lob\tests\testing.exe -Enable AuditDynamicCode >You can disable audit mode by using the same command but replacing -Enable with -Disable. --- .../customize-exploit-protection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/windows-defender-exploit-guard/customize-exploit-protection.md b/windows/security/threat-protection/windows-defender-exploit-guard/customize-exploit-protection.md index c238e5c8c2..0e744a0011 100644 --- a/windows/security/threat-protection/windows-defender-exploit-guard/customize-exploit-protection.md +++ b/windows/security/threat-protection/windows-defender-exploit-guard/customize-exploit-protection.md @@ -208,7 +208,7 @@ Where: For example, to enable Arbitrary Code Guard (ACG) in audit mode for the *testing.exe* used in the example above, you'd use the following command: ```PowerShell -Set-ProcesMitigation -Name c:\apps\lob\tests\testing.exe -Enable AuditDynamicCode +Set-ProcessMitigation -Name c:\apps\lob\tests\testing.exe -Enable AuditDynamicCode ``` You can disable audit mode by using the same command but replacing `-Enable` with `-Disable`.