We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20665a1 commit 0598974Copy full SHA for 0598974
exchange/exchange-ps/exchange/New-DlpKeywordDictionary.md
@@ -48,7 +48,7 @@ This example creates a DLP keyword dictionary named Diseases by using the specif
48
### Example 2
49
```powershell
50
$Keywords = Get-Content "C:\My Documents\InappropriateTerms.txt"
51
-$EncodedKeywords = $Keywords | ForEach-Object{[System.Text.Encoding]::Unicode.GetBytes($_+"`r`n")}
+$EncodedKeywords = $Keywords | ForEach-Object {[System.Text.Encoding]::Unicode.GetBytes($_+"`r`n")}
52
New-DlpKeywordDictionary -Name "Inappropriate Language" -Description "Unprofessional and inappropriate terminology" -FileData $EncodedKeywords
53
```
54
0 commit comments