# Set-PasswordFilterConfig

## SYNOPSIS

Changes the password filter configuration

## SYNTAX

```
Set-PasswordFilterConfig [[-StorePath] <String>] [-Enabled] [<CommonParameters>]
```

## DESCRIPTION

This cmdlet allows you to change the store location, and the enabled state of the password filter

## EXAMPLES

### Example 1

```powershell
PS C:\> Set-PasswordFilterConfig -Enabled:$false
```

Disables the password filter

### Example 2

```powershell
PS C:\> Set-PasswordFilterConfig -Enabled
```

Enables the password filter

### Example 3

```powershell
PS C:\> Set-PasswordFilterConfig -StorePath C:\newstore
```

Changes the store location to C:\newstore

## PARAMETERS

### -Enabled

Enables or disables the password filter

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: true
Accept pipeline input: False
Accept wildcard characters: False
```

### -StorePath

The path to the password store

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

### None

## OUTPUTS

### System.Object

## NOTES

## RELATED LINKS


---

# 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/advanced-help/powershell-reference/set-passwordfilterconfig.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.
