An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

Puppet-Windows_AutoLogin
===============

A puppet module to configure auto login on Windows
[![Project Build Status](https://travis-ci.org/tombuildsstuff/puppet-windows_autologin.svg?branch=master)](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 :)