# パスワードレポートコマンド

### パスワードレポートコマンド <a href="#password-report-command-details" id="password-report-command-details"></a>

パスワードの長さや文字種の条件を、レコードごとにポリシーと照合して一覧します。フォルダやポリシーで表示対象を絞り込めます。

<details>

<summary>DotNet CLI</summary>

**近日公開**

</details>

<details>

<summary>DotNet SDK</summary>

**近日公開**

</details>

<details>

<summary>PowerCommander</summary>

**コマンド:** `Get-KeeperPasswordReport`

**パラメーター**

| フラグ        | 用途                                             | 既定             |
| ---------- | ---------------------------------------------- | -------------- |
| `-Policy`  | 複雑さ要件 (`Length,Lower,Upper,Digits,Special` 形式) | `"12,2,2,2,0"` |
| `-Folder`  | 特定のフォルダパスまたは UID に限定                           | 全レコード          |
| `-Length`  | パスワード最短長の下限                                    | ポリシーに従う        |
| `-Lower`   | 小文字の最小文字数                                      | ポリシーに従う        |
| `-Upper`   | 大文字の最小文字数                                      | ポリシーに従う        |
| `-Digits`  | 数字の最小文字数                                       | ポリシーに従う        |
| `-Special` | 記号の最小文字数                                       | ポリシーに従う        |

**例:**

{% 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>

**コマンド:** `passsword-report`

**パラメーター:**

<kbd>folder</kbd>: フォルダパスまたは UID

**フラグ:**

<kbd>--format</kbd> 出力形式 {table, csv, json}\ <kbd>--output</kbd> 結果ファイルの出力パス (形式が `table` のときは無視)\ <kbd>-v, --verbose</kbd> 詳細情報の表示\ <kbd>--policy</kbd> パスワード複雑さポリシー。Length,Lower,Upper,Digits,Special。既定は 12,2,2,2,0\ <kbd>-l, --length</kbd> 最小パスワード長\ <kbd>-u, --upper</kbd> 最小大文字数\ <kbd>--lower</kbd> 最小小文字数\ <kbd>-d, --digits</kbd> 最小数字数\ <kbd>-s, --special</kbd> 最小記号数

**例:**

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

**近日公開**

</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/jp/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.
