Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add notice on account creation limitations. #11972

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion windows/client-management/mdm/accounts-csp.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,34 @@ Available naming macros:
Supported operation is Add.

> [!Note]
> For desktop PCs on Windows 10, version 2004 or later, use the **Ext/Microsoft/DNSComputerName** node in [DevDetail CSP](devdetail-csp.md).
> For desktop PCs on supported versions of Windows 10 or later, use the **Ext/Microsoft/DNSComputerName** node in [DevDetail CSP](devdetail-csp.md).

<a href="" id="users"></a>**Users**
Interior node for the user account information.

<a href="" id="users-username"></a>**Users/_UserName_**
This node specifies the username for a new local user account. This setting can be managed remotely.

> [!IMPORTANT]
> The username is limited to 20 characters.

<a href="" id="users-username-password"></a>**Users/_UserName_/Password**
This node specifies the password for a new local user account. This setting can be managed remotely.

Supported operation is Add.
GET operation isn't supported. This setting will report as failed when deployed from Intune.

> [!IMPORTANT]
> This string needs to meet the current password policy requirements.
>
> Escape any special characters in the string. For example,
>
> | Character | Escape sequence |
> |:---|:---|
> | `<` | `&lt;` |
> | `>` | `&gt;` |
> | `&` | `&amp;` |

<a href="" id="users-username-localusergroup"></a>**Users/_UserName_/LocalUserGroup**
This optional node specifies the local user group that a local user account should be joined to. If the node isn't set, the new local user account is joined just to the Standard Users group. Set the value to 2 for Administrators group. This setting can be managed remotely.

Expand Down
Loading