Test-IsBannedWord
The Test-IsBannedWord cmdlet checks to see if a specified string matches a value in the banned word store. The normalization rules are applied to the string and the resulting value is checked against the store.
Syntax
Test-IsBannedWord -Value <string>
Test-IsBannedWord -Hash <byte[]>
Test-IsBannedWord -SecureString <SecureString>Parameters
Value
Required. The string to test. Normalization rules are applied to this string before it is checked against the store
Hash
Required. A binary hash to test. A hash cannot be normalized, so it is tested as-is.
SecureString
Required. The string to test as a SecureString. Normalization rules are applied to this string before it is checked against the store
Return value
The cmdlet returns a boolean value indicating whether the input string or hash matches a value in the banned word store.
Examples
Last updated