managing directories with ACLs
This commit is contained in:
parent
5f01b3bec1
commit
0e53e2d15c
Binary file not shown.
@ -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',
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user