Version information
Start using this module
Add this module to your Puppetfile:
mod 'jonnyx-msuac', '0.0.3'
Learn more about managing modules with a PuppetfileDocumentation
#msuac
####Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with msuac
- Usage - Configuration options and additional functionality
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
##Overview
The msuac module allows you to manage Microsoft User account control (MSUAC). UAC is a feature in Windows to help protect you from intrusive software by warning you if changes are being made. When a change to the computer is being made that requires administrative privileges, UAC will prompt you based on its configuration. This module will allow you to change those settings.
##Module Description
This module will change the registry key values based on the desired UAC configuration.
##Setup
###What msuac affects
- If UAC is set to 'Disabled', a reboot will be required for changes to take effect.
###Setup Requirements
Depends on the following modules:
##Usage
Class: msuac
class { 'msuac':
enabled => false,
prompt => disabled,
}
##Parameters:
$prompt_value is one of the three option:
0x00000000 (disabled)
This option SHOULD be used to allow the Consent Admin to perform an operation that requires elevation without consent or credentials.
0x00000001 (authprompt)
This option SHOULD be used to prompt the Consent Admin to enter his or her user name and password (or another valid admin) when an operation requires elevation of privilege.
0x00000002 (default, consentprompt)
This option SHOULD be used to prompt the administrator in Admin Approval Mode to select either "Permit" or "Deny" an operation that requires elevation of privilege. If the Consent Admin selects Permit, the operation will continue with their highest available privilege. "Prompt for consent" removes the inconvenience of requiring that users enter their name and password to perform a privileged task.
##Limitations
Windows Versions supported:
- Windows Visa
- Windows 7
- Server 2008
##Development
##Release Notes/Contributors/Etc
Contributors:
Thomas Linkin <tom@puppetlabs.com>
Dependencies
- puppetlabs/stdlib (>=4.1.0)
- puppetlabs/registry ()