Puppet Class: secure_windows::stig::v73537
- Defined in:
- manifests/stig/v73537.pp
Overview
V-73537 Users must be prompted to authenticate when the system wakes from sleep (on battery).
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'manifests/stig/v73537.pp', line 3
class secure_windows::stig::v73537 (
Boolean $enforced = false,
) {
if $enforced {
registry::value { 'v73537':
key => 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51',
value => 'DCSettingIndex',
type => 'dword',
data => '0x00000001',
}
}
}
|