# Add-BannedWord

The `Add-BannedWord` cmdlet takes a string of text, applies the [normalization rules](https://docs.lithnet.io/password-protection/1.0/help-and-support/normalization-rules) to it, and adds it to the banned word store.

## Syntax

```
Add-BannedWord -Value <string>

Add-BannedWord -SecureString <SecureString>
```

### Parameters

**`Value`**

Required. The string of text to add to the store. [Normalization rules](https://docs.lithnet.io/password-protection/1.0/help-and-support/normalization-rules) will be applied to the string before it is committed to the store

**`SecureString`**

Required. The string of text to add to the store as a secure string object.[ Normalization rules](https://docs.lithnet.io/password-protection/1.0/help-and-support/normalization-rules) will be applied to the string before it is committed to the store

### Examples

The following example adds a single banned word to the store

```powershell
Add-BannedWord -Value "password"
```

The following example prompts for a word to be added to the store

```powershell
Add-BannedWord -SecureString (Read-Host -Prompt "Enter the banned word to add to the store" -AsSecureString)
```

To import a file of banned words, use the[ Import-BannedWords](https://docs.lithnet.io/password-protection/1.0/advanced-help/powershell-reference/import-bannedwords) or [Import‐BannedWordHashes](https://docs.lithnet.io/password-protection/1.0/advanced-help/powershell-reference/import-bannedwordhashes)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lithnet.io/password-protection/1.0/advanced-help/powershell-reference/add-bannedword.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
