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-CompromisedPassword

The Remove-CompromisedPassword cmdlet removes a string of text from the compromised password store.

Syntax

Remove-CompromisedPassword -Value <string>

Remove-CompromisedPassword -SecureString <SecureString>

Parameters

Value

Required. The password to remove from the compromised password store

SecureString

Required. The password to remove from the compromised password store as a secure string

Examples

The following example removes a single compromised password from the store

Remove-CompromisedPassword -Value "password"

The following example prompts for a password to remove from the compromised password store

Remove-CompromisedPassword -SecureString (Read-Host -Prompt "Enter the compromised password to remove from the store" -AsSecureString)
PreviousRemove-BannedWordNextTest-IsADUserPasswordCompromised

Last updated 3 years ago