Skip to content

Commit 7aa6d61

Browse files
authored
Merge pull request MicrosoftDocs#6508 from doctorscripto/patch-1
Update Remove-DlpKeywordDictionary.md
2 parents 8d5b9d9 + 277dff0 commit 7aa6d61

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

exchange/exchange-ps/exchange/Remove-DlpKeywordDictionary.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,15 @@ You need to be assigned permissions in the Security & Compliance Center before y
3636
Remove-DlpKeywordDictionary -Identity "Financial Data"
3737
```
3838

39-
This example remove the DLP keyword dictionary named Financial Data.
39+
This example removes the DLP keyword dictionary named Financial Data.
40+
41+
### Example 2
42+
```powershell
43+
Get-DlpKeywordDictionary | Foreach-Object { Remove-DlpKeywordDictionary -Identity $_.Name -confirm:$True }
44+
```
45+
46+
This example removes all the DLP keyword dictionaries with a Confirm on each removal.
47+
4048

4149
## PARAMETERS
4250

0 commit comments

Comments
 (0)