You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Get-NTFSEffectiveAccess.md 3.0 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
3 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. ---
  2. external help file: NTFSSecurity.dll-Help.xml
  3. Module Name: ntfssecurity
  4. online version:
  5. schema: 2.0.0
  6. ---
  7. # Get-NTFSEffectiveAccess
  8. ## SYNOPSIS
  9. {{ Fill in the Synopsis }}
  10. ## SYNTAX
  11. ### Path (Default)
  12. ```
  13. Get-NTFSEffectiveAccess [[-Path] <String[]>] [[-Account] <IdentityReference2>] [-ServerName <String>]
  14. [-ExcludeNoneAccessEntries] [<CommonParameters>]
  15. ```
  16. ### SecurityDescriptor
  17. ```
  18. Get-NTFSEffectiveAccess [-SecurityDescriptor] <FileSystemSecurity2[]> [[-Account] <IdentityReference2>]
  19. [-ServerName <String>] [-ExcludeNoneAccessEntries] [<CommonParameters>]
  20. ```
  21. ## DESCRIPTION
  22. {{ Fill in the Description }}
  23. ## EXAMPLES
  24. ### Example 1
  25. ```PowerShell
  26. PS C:\> {{ Add example code here }}
  27. ```
  28. {{ Add example description here }}
  29. ## PARAMETERS
  30. ### -Account
  31. {{ Fill Account Description }}
  32. ```yaml
  33. Type: IdentityReference2
  34. Parameter Sets: (All)
  35. Aliases: NTAccount, IdentityReference
  36. Required: False
  37. Position: 2
  38. Default value: None
  39. Accept pipeline input: True (ByPropertyName)
  40. Accept wildcard characters: False
  41. ```
  42. ### -ExcludeNoneAccessEntries
  43. {{ Fill ExcludeNoneAccessEntries Description }}
  44. ```yaml
  45. Type: SwitchParameter
  46. Parameter Sets: (All)
  47. Aliases:
  48. Required: False
  49. Position: Named
  50. Default value: None
  51. Accept pipeline input: False
  52. Accept wildcard characters: False
  53. ```
  54. ### -Path
  55. {{ Fill Path Description }}
  56. ```yaml
  57. Type: String[]
  58. Parameter Sets: Path
  59. Aliases: FullName
  60. Required: False
  61. Position: 1
  62. Default value: None
  63. Accept pipeline input: True (ByPropertyName, ByValue)
  64. Accept wildcard characters: False
  65. ```
  66. ### -SecurityDescriptor
  67. The SecurityDescriptor parameter allows passing an security descriptor or an array or security descriptors.
  68. 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.
  69. ```yaml
  70. Type: FileSystemSecurity2[]
  71. Parameter Sets: SecurityDescriptor
  72. Aliases:
  73. Required: True
  74. Position: 1
  75. Default value: None
  76. Accept pipeline input: True (ByPropertyName, ByValue)
  77. Accept wildcard characters: False
  78. ```
  79. ### -ServerName
  80. {{ Fill ServerName Description }}
  81. ```yaml
  82. Type: String
  83. Parameter Sets: (All)
  84. Aliases:
  85. Required: False
  86. Position: Named
  87. Default value: None
  88. Accept pipeline input: False
  89. Accept wildcard characters: False
  90. ```
  91. ### CommonParameters
  92. 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).
  93. ## INPUTS
  94. ### System.String[]
  95. ### Security2.FileSystemSecurity2[]
  96. ### Security2.IdentityReference2
  97. ## OUTPUTS
  98. ### Security2.FileSystemAccessRule2
  99. ## NOTES
  100. ## RELATED LINKS