# Password Report Command

### Password Report Command

Displays information about shared records, limited to those shared by the caller with other users and excluding records shared with the caller by others..

<details>

<summary>DotNet CLI</summary>

**Command:** Coming Soon

</details>

<details>

<summary>DotNet SDK</summary>

**Function:** Coming Soon

</details>

<details>

<summary>Power Commander</summary>

**Command:** `Get-KeeperPasswordReport`

**Parameters**

| Flag       | Purpose                                                  | Default        |
| ---------- | -------------------------------------------------------- | -------------- |
| `-Policy`  | Complexity policy as `Length,Lower,Upper,Digits,Special` | `"12,2,2,2,0"` |
| `-Folder`  | Limit to a specific folder path or UID                   | All records    |
| `-Length`  | Minimum password length filter                           | From policy    |
| `-Lower`   | Minimum lowercase characters filter                      | From policy    |
| `-Upper`   | Minimum uppercase characters filter                      | From policy    |
| `-Digits`  | Minimum digits filter                                    | From policy    |
| `-Special` | Minimum special characters filter                        | From policy    |

**Examples:**

{% code expandable="true" %}

```
PS > Get-KeeperPasswordReport -Policy "16,3,3,3,1"
     Password Length: 16
Lowercase characters: 3
Uppercase characters: 3
              Digits: 3
    Special characters: 1


Record UID             Title         Description           Length Lower Upper Digits Special
----------             -----         -----------           ------ ----- ----- ------ -------
aA3jupAlFe8d7Z5KFWyfeQ 1rec_5iEQPHha user256@test.local        12     1     7      4       0
HtQDE742egmS7lllKC2lWA 1rec_U7FtywiP user275@test.local        12     4     5      3       0
IrcqEStZGsEIzI8VoHgTTw 1rec_FNRJanY1 user853@test.local        12     6     3      3       0
oBmXCuUPzrIZRXuMMGEuvQ 1rec_S6XMmej2 user303@test.local        12     6     4      2       0
```

{% endcode %}

</details>

<details>

<summary>Python CLI</summary>

**Command:** `passsword-report`

**Parameters:**

<kbd>folder</kbd>: folder path or UID

**Flags:**

<kbd>--format</kbd> format of output {table, csv, json}.\ <kbd>--output</kbd> path to resulting output file (ignored for "table" format).\ <kbd>-v, --verbose</kbd> display verbose information.\ <kbd>--policy</kbd> password complexity policy. Length,Lower,Upper,Digits,Special. Default is 12,2,2,2,0.\ <kbd>-l, --length</kbd> minimum password length.\ <kbd>-u, --upper</kbd> minimum uppercase characters.\ <kbd>--lower</kbd> minimum lowercase characters.\ <kbd>-d, --digits</kbd> minimum digits.\ <kbd>-s, --special</kbd> minimum special characters.

**Example:**

```powershell
My Vault> password-report <folder_uid> --policy 12,2,2,2,0

     Password Length: 12
Lowercase characters: 2
Uppercase characters: 2
              Digits: 2

#    Record UID    Title    Description    Length    Lower    Upper    Digits    Special
---  ------------  -------  -------------  --------  -------  -------  --------  ---------
```

</details>

<details>

<summary>Python SDK</summary>

**Function:** Coming Soon

</details>


---

# 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.keeper.io/keeperpam/commander-sdk/keeper-commander-sdks/sdk-command-reference/reporting-commands/password-report-command.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.
