https://github.com/tombuildsstuff/puppet-windows_autologin
A puppet module to configure auto login on Windows
https://github.com/tombuildsstuff/puppet-windows_autologin
Last synced: over 1 year ago
JSON representation
A puppet module to configure auto login on Windows
- Host: GitHub
- URL: https://github.com/tombuildsstuff/puppet-windows_autologin
- Owner: tombuildsstuff
- License: mit
- Created: 2015-10-31T12:32:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-01T08:28:16.000Z (almost 10 years ago)
- Last Synced: 2025-03-24T00:27:36.336Z (over 1 year ago)
- Language: Ruby
- Homepage: https://forge.puppetlabs.com/tombuildsstuff/windows_autologin
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Puppet-Windows_AutoLogin
===============
A puppet module to configure auto login on Windows
[](https://travis-ci.org/tombuildsstuff/puppet-windows_autologin)
Installation
------------
Add this to your Puppetfile:
```puppet
mod 'tombuildsstuff/windows_autologin', '1.1.0'
````
Usage
-----
Enabling Auto-Login (on a local computer):
```puppet
class { 'windows_autologin':
ensure => 'present',
username => 'myuser',
password => 'p@ssw0rd'
}
```
Enabling Auto-Login (when the machine is bound to a Active Directory):
```puppet
class { 'windows_autologin':
ensure => 'present',
domain => 'mydomain',
username => 'myuser',
password => 'p@ssw0rd'
}
```
Disabling Auto-Login:
```puppet
class { 'windows_autologin':
ensure => 'absent'
}
```
Testing
-------
This module's been tested on Windows Server 2008/2012 R2
Contributing
------------
Send a pull request, ideally with tests :)