A puppet module to configure auto login on Windows
Add this to your Puppetfile:
mod 'tombuildsstuff/windows_autologin', '1.1.0'Enabling Auto-Login (on a local computer):
class { 'windows_autologin':
ensure => 'present',
username => 'myuser',
password => 'p@ssw0rd'
}Enabling Auto-Login (when the machine is bound to a Active Directory):
class { 'windows_autologin':
ensure => 'present',
domain => 'mydomain',
username => 'myuser',
password => 'p@ssw0rd'
}Disabling Auto-Login:
class { 'windows_autologin':
ensure => 'absent'
}This module's been tested on Windows Server 2008/2012 R2
Send a pull request, ideally with tests :)