Tests/Integration/cNtfsPermissionEntry.Config.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
#requires -Version 4.0 $TestParameters = [PSCustomObject]@{ Ensure = 'Present' Path = (Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath ([Guid]::NewGuid().Guid)) Principal = 'BUILTIN\Users' } Configuration cNtfsPermissionEntry_Config { Import-DscResource -ModuleName cNtfsAccessControl Node localhost { cNtfsPermissionEntry Test { Ensure = $TestParameters.Ensure Path = $TestParameters.Path Principal = $TestParameters.Principal AccessControlInformation = @( cNtfsAccessControlInformation { AccessControlType = 'Allow' FileSystemRights = 'Modify' Inheritance = 'ThisFolderOnly' NoPropagateInherit = $false } cNtfsAccessControlInformation { AccessControlType = 'Allow' FileSystemRights = 'ReadAndExecute' Inheritance = 'ThisFolderSubfoldersAndFiles' NoPropagateInherit = $false } cNtfsAccessControlInformation { AccessControlType = 'Allow' FileSystemRights = 'AppendData', 'CreateFiles' Inheritance = 'SubfoldersAndFilesOnly' NoPropagateInherit = $false } ) } } } |