managing directories with ACLs

This commit is contained in:
christopher.lawrence 2020-02-07 12:29:53 +00:00
parent 5f01b3bec1
commit 0e53e2d15c
2 changed files with 29 additions and 0 deletions

View File

@ -11,4 +11,33 @@ class profile::custom_windows::add_user {
manage_home => true,
user_file => 'myfile',
}
acl { 'C:\\Users\\myuser\myfile':
permissions => [
{ identity => myuser, rights => ['read','execute'] },
{ identity => mygroup, rights => ['read'] }
],
}
registry::value { 'Enable IE ESC':
key => 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{A509B1A7-37EF-4b3f-8CFC-4F3A74704073}',
value => 'IsInstalled',
data => '1',
type => 'dword',
}
registry::value { 'Enable shutdown tracker':
key => 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Reliability',
value => 'ShutdownReasonOn',
data => '1',
type => 'dword',
}
registry::value { 'Enable shutdown tracker UI':
key => 'HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Reliability',
value => 'ShutdownReasonUI',
data => '1',
type => 'dword',
}
}