Lithnet Password Protection for AD
Request a quote for supportDownloads
v1.0 - LPP
v1.0 - LPP
  • About Lithnet Password Protection
    • How does Password Protection help my organisation
    • Enterprise Support
  • Installation
    • Getting Started
    • Installation of Password Protection
    • Creating a new store
      • Understanding the store
    • Configure the password group policy
    • Testing the password filter
    • Audit existing passwords
    • Event logging and reporting
  • Configuration
    • Configuring a length based complexity policy
    • Configuring a points based complexity policy
  • Help & Support
    • Normalization Rules
  • Advanced Help
    • Powershell reference
      • Add-BannedWord
      • Add-CompromisedPassword
      • Get-PasswordFilterResult
      • Import-BannedWordHashes
      • Import-BannedWords
      • Import-CompromisedPasswordHashes
      • Import-CompromisedPasswords
      • Open-Store
      • Remove-BannedWord
      • Remove-CompromisedPassword
      • Test-IsADUserPasswordCompromised
      • Test-IsBannedWord
      • Test-IsCompromisedPassword
Powered by GitBook
On this page
  • Syntax
  • Parameters
  • Examples
  1. Advanced Help
  2. Powershell reference

Add-BannedWord

PreviousPowershell referenceNextAdd-CompromisedPassword

Last updated 2 years ago

The Add-BannedWord cmdlet takes a string of text, applies the 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. 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. 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

Add-BannedWord -Value "password"

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

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 or

normalization rules
Normalization rules
Normalization rules
Import-BannedWords
Import‐BannedWordHashes