25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Get-NTFSInheritance.md 2.1 KiB

3 년 전
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ---
  2. external help file: NTFSSecurity.dll-Help.xml
  3. Module Name: ntfssecurity
  4. online version:
  5. schema: 2.0.0
  6. ---
  7. # Get-NTFSInheritance
  8. ## SYNOPSIS
  9. {{ Fill in the Synopsis }}
  10. ## SYNTAX
  11. ### Path (Default)
  12. ```
  13. Get-NTFSInheritance [[-Path] <String[]>] [<CommonParameters>]
  14. ```
  15. ### SecurityDescriptor
  16. ```
  17. Get-NTFSInheritance [-SecurityDescriptor] <FileSystemSecurity2[]> [<CommonParameters>]
  18. ```
  19. ## DESCRIPTION
  20. {{ Fill in the Description }}
  21. ## EXAMPLES
  22. ### Example 1
  23. ```PowerShell
  24. PS C:\> {{ Add example code here }}
  25. ```
  26. {{ Add example description here }}
  27. ## PARAMETERS
  28. ### -Path
  29. {{ Fill Path Description }}
  30. ```yaml
  31. Type: String[]
  32. Parameter Sets: Path
  33. Aliases: FullName
  34. Required: False
  35. Position: 1
  36. Default value: None
  37. Accept pipeline input: True (ByPropertyName, ByValue)
  38. Accept wildcard characters: False
  39. ```
  40. ### -SecurityDescriptor
  41. The SecurityDescriptor parameter allows passing an security descriptor or an array or security descriptors.
  42. A security descriptor contains information about the owner of the object, and the primary group of an object. The security descriptor also contains two access control lists (ACL). The first list is called the discretionary access control lists (DACL), and describes who should have access to an object and what type of access to grant. The second list is called the system access control lists (SACL) and defines what type of auditing to record for an object.
  43. ```yaml
  44. Type: FileSystemSecurity2[]
  45. Parameter Sets: SecurityDescriptor
  46. Aliases:
  47. Required: True
  48. Position: 1
  49. Default value: None
  50. Accept pipeline input: True (ByPropertyName, ByValue)
  51. Accept wildcard characters: False
  52. ```
  53. ### CommonParameters
  54. This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
  55. ## INPUTS
  56. ### System.String[]
  57. ### Security2.FileSystemSecurity2[]
  58. ## OUTPUTS
  59. ### Security2.FileSystemInheritanceInfo
  60. ## NOTES
  61. ## RELATED LINKS