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.
2 parents 8d5b9d9 + 277dff0 commit 7aa6d61Copy full SHA for 7aa6d61
exchange/exchange-ps/exchange/Remove-DlpKeywordDictionary.md
@@ -36,7 +36,15 @@ You need to be assigned permissions in the Security & Compliance Center before y
36
Remove-DlpKeywordDictionary -Identity "Financial Data"
37
```
38
39
-This example remove the DLP keyword dictionary named Financial Data.
+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
48
49
## PARAMETERS
50
0 commit comments