https://github.com/autostructure/auditpol
https://github.com/autostructure/auditpol
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/autostructure/auditpol
- Owner: autostructure
- License: mit
- Created: 2018-08-11T19:06:45.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-11T19:08:19.000Z (almost 7 years ago)
- Last Synced: 2025-03-11T14:26:55.556Z (4 months ago)
- Language: Ruby
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# puppet-auditpol
puppet-auditpol is a Puppet type/provider to manage audit policies on Windows using auditpol.exe.
## example:
```puppet
auditpol { 'Account Lockout':
success => 'enable',
failure => 'disable',
}
```results in
```
PS C:\Windows\system32> auditpol /get /subcategory:"Account Lockout"
System audit policyCategory/Subcategory Setting
Logon/Logoff
Account Lockout Success
```