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.
This commit is contained in:
Marty Hernandez Avedon
2019-06-17 11:20:04 -04:00
committed by GitHub
parent acffe88c9d
commit 456e3f6eb9

View File

@ -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`.