community.windows.win_auto_logon module – Adds or Sets auto logon registry keys.
Note
This module is part of the community.windows collection (version 1.13.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.windows
.
To use it in a playbook, specify: community.windows.win_auto_logon
.
Synopsis
Used to apply auto logon registry setting.
Parameters
Parameter |
Comments |
---|---|
The number of times to do an automatic logon. This count is deremented by Windows everytime an automatic logon is performed. Once the count reaches |
|
Password to be used for automatic login. Must be set when Value of this input will be used as password for username. While this value is encrypted by LSA it is decryptable to any user who is an Administrator on the remote host. |
|
Whether the registry key should be Choices:
|
|
Username to login automatically. Must be set when This can be the Netlogon or UPN of a domain account and is automatically parsed to the |
Examples
- name: Set autologon for user1
community.windows.win_auto_logon:
username: User1
password: str0ngp@ssword
- name: Set autologon for abc.com\user1
community.windows.win_auto_logon:
username: abc.com\User1
password: str0ngp@ssword
- name: Remove autologon for user1
community.windows.win_auto_logon:
state: absent
- name: Set autologon for user1 with a limited logon count
community.windows.win_auto_logon:
username: User1
password: str0ngp@ssword
logon_count: 5