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

Remove-BannedWord

PreviousOpen-StoreNextRemove-CompromisedPassword

Last updated 3 years ago

The Remove-BannedWord cmdlet takes a string of text, applies the to it, and removes it from the banned word store. If the normalized word is not present in the store, this cmdlet does nothing.

Syntax

Remove-BannedWord -Value <string>

Remove-BannedWord -SecureString <SecureString>

Parameters

Value

Required. The string of text to remove from the store. will be applied to the string.

SecureString

Required. The string of text to remove from the store as a secure string object. will be applied to the string.

Examples

The following example removes a single banned word from the store

Remove-BannedWord -Value "password"

The following example prompts for a word to be removed from the store

Remove-BannedWord -SecureString (Read-Host -Prompt "Enter the banned word to remove from the store" -AsSecureString)
normalization rules
Normalization rules
Normalization rules