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.
 
 

2334 lines
92 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <helpItems xmlns="http://msh" schema="maml">
  3. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  4. <!--Generated by Help Cmdlet Editor-->
  5. <command:details>
  6. <command:name>Add-Access</command:name>
  7. <maml:description>
  8. <maml:para>Add permission to the ACL of a file or folder.</maml:para>
  9. </maml:description>
  10. <maml:copyright>
  11. <maml:para />
  12. <!--Add copy right info here.-->
  13. </maml:copyright>
  14. <command:verb>Add</command:verb>
  15. <command:noun>Access</command:noun>
  16. <!--Add Dev version info here.-->
  17. <dev:version />
  18. </command:details>
  19. <maml:description>
  20. <!--This is the Description section-->
  21. <maml:para>The function adds an ACE to the item's ACL. The cmdlet needs to have the following information for that:
  22. - Path
  23. - Account (SamAccountName or SID)
  24. - AccessRights (Read, Change, FullControl, etc., ...)
  25. - AccessType (Allow or Deny)
  26. -
  27. (This folder only, Only files, etc.)
  28. All the options are explained in the parameter section.
  29. The function needs to know the file or folder path. The path can be an argument or be piped into the function as string or FileSystemInfo object (result of Get-ChildItem or Get-Item).</maml:para>
  30. </maml:description>
  31. <command:syntax> <command:syntaxItem>
  32. <maml:name>Add-Access</maml:name>
  33. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
  34. <maml:name>Account</maml:name>
  35. <maml:description>
  36. <maml:para>Takes the account that is will be granted permission. This can either be a SID (well known, domain or local) or a account name. The account name must be specified in the syntax 'Domain\UserName'. Well known accounts are not part of the domain or local machine. Use for example 'NT Authority\System' or 'Builtin\Administrators'.</maml:para>
  37. </maml:description>
  38. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  39. </command:parameter>
  40. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
  41. <maml:name>AccessRights</maml:name>
  42. <maml:description>
  43. <maml:para>The right the account shall get. This parameter is of the type System.Security.AccessControl.FileSystemRights so the following values are valid: ListDirectory, ReadData, WriteData, CreateFiles, CreateDirectories, AppendData, ReadExtendedAttributes, WriteExtendedAttributes, Traverse, ExecuteFile,DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl</maml:para>
  44. </maml:description>
  45. <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
  46. </command:parameter>
  47. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  48. <maml:name>AccessType</maml:name>
  49. <maml:description>
  50. <maml:para>The type of access you want to give, either Allow or Deny (System.Security.AccessControl.AccessControlType).</maml:para>
  51. </maml:description>
  52. <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
  53. </command:parameter>
  54. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  55. <maml:name>InheritanceFlags</maml:name>
  56. <maml:description>
  57. <maml:para>Defines what child items are going to inherit in terms of permissions. If not defined, permissions will be inherited by files and folders (ContainerInherit | ObjectInherit)
  58. There are three options:
  59. - None: The permission will not be inherited by any child item
  60. - ContainerInherit: The permission will be inherited only by directories
  61. - ObjectInherit: The permission will be inherited only by files</maml:para>
  62. </maml:description>
  63. <command:parameterValue required="true" variableLength = "false" >InheritanceFlags</command:parameterValue>
  64. </command:parameter>
  65. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  66. <maml:name>PropagationFlags</maml:name>
  67. <maml:description>
  68. <maml:para>Specifies how Access Control Entries (ACEs) are propagated to child objects.
  69. There are three options:
  70. - None: Specifies that no propagation flags are set.
  71. - NoPropagateInherit: Specifies that the ACE is not propagated to child objects.
  72. - InheritOnly: Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects.</maml:para>
  73. </maml:description>
  74. <command:parameterValue required="true" variableLength = "false" >PropagationFlags</command:parameterValue>
  75. </command:parameter>
  76. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  77. <maml:name>PassThru</maml:name>
  78. <maml:description>
  79. <maml:para>Returns the item's access control list by using FileSystemAccessRule2. item's ACE. By default, this cmdlet does not generate any output.</maml:para>
  80. </maml:description>
  81. </command:parameter>
  82. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  83. <maml:name>Path</maml:name>
  84. <maml:description>
  85. <maml:para>Specifies the path to a resource. Add-Access adds permissions to the items indicated by the path. Wildcards are not permitted. This parameter accepts input from the pipeline so combining Get-Access with Get-ChildItem or Get-Item is the easiest way if you want to process multiple files or folders.</maml:para>
  86. </maml:description>
  87. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  88. </command:parameter>
  89. </command:syntaxItem>
  90. <command:syntaxItem>
  91. <maml:name>Add-Access</maml:name>
  92. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
  93. <maml:name>Account</maml:name>
  94. <maml:description>
  95. <maml:para>Takes the account that is will be granted permission. This can either be a SID (well known, domain or local) or a account name. The account name must be specified in the syntax 'Domain\UserName'. Well known accounts are not part of the domain or local machine. Use for example 'NT Authority\System' or 'Builtin\Administrators'.</maml:para>
  96. </maml:description>
  97. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  98. </command:parameter>
  99. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
  100. <maml:name>AccessRights</maml:name>
  101. <maml:description>
  102. <maml:para>The right the account shall get. This parameter is of the type System.Security.AccessControl.FileSystemRights so the following values are valid: ListDirectory, ReadData, WriteData, CreateFiles, CreateDirectories, AppendData, ReadExtendedAttributes, WriteExtendedAttributes, Traverse, ExecuteFile,DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl</maml:para>
  103. </maml:description>
  104. <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
  105. </command:parameter>
  106. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  107. <maml:name>AccessType</maml:name>
  108. <maml:description>
  109. <maml:para>The type of access you want to give, either Allow or Deny (System.Security.AccessControl.AccessControlType).</maml:para>
  110. </maml:description>
  111. <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
  112. </command:parameter>
  113. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  114. <maml:name>AppliesTo</maml:name>
  115. <maml:description>
  116. <maml:para>This parameter controls inheritance and propagation like the &quot;Apply To&quot; drop-down box in the Windows Explorer dialog. The allowed options are:
  117. - ThisFolderOnly
  118. - ThisFolderSubfolderAndFiles
  119. - ThisFolderAndSubfolders
  120. - ThisFolderAndFiles
  121. - SubfolderAndFilesOnly
  122. - SubfolersOnly
  123. - FilesOnly</maml:para>
  124. </maml:description>
  125. <command:parameterValue required="true" variableLength = "false" >ApplyTo</command:parameterValue>
  126. </command:parameter>
  127. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  128. <maml:name>PassThru</maml:name>
  129. <maml:description>
  130. <maml:para>Returns the item's access control list by using FileSystemAccessRule2. item's ACE. By default, this cmdlet does not generate any output.</maml:para>
  131. </maml:description>
  132. </command:parameter>
  133. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  134. <maml:name>Path</maml:name>
  135. <maml:description>
  136. <maml:para>Specifies the path to a resource. Add-Access adds permissions to the items indicated by the path. Wildcards are not permitted. This parameter accepts input from the pipeline so combining Get-Access with Get-ChildItem or Get-Item is the easiest way if you want to process multiple files or folders.</maml:para>
  137. </maml:description>
  138. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  139. </command:parameter>
  140. </command:syntaxItem>
  141. </command:syntax>
  142. <command:parameters>
  143. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1">
  144. <maml:name>Account</maml:name>
  145. <maml:description>
  146. <maml:para>Takes the account that is will be granted permission. This can either be a SID (well known, domain or local) or a account name. The account name must be specified in the syntax 'Domain\UserName'. Well known accounts are not part of the domain or local machine. Use for example 'NT Authority\System' or 'Builtin\Administrators'.</maml:para>
  147. </maml:description>
  148. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  149. <dev:type>
  150. <maml:name>IdentityReference2</maml:name>
  151. <maml:uri/>
  152. </dev:type>
  153. <dev:defaultValue></dev:defaultValue>
  154. </command:parameter>
  155. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
  156. <maml:name>AccessRights</maml:name>
  157. <maml:description>
  158. <maml:para>The right the account shall get. This parameter is of the type System.Security.AccessControl.FileSystemRights so the following values are valid: ListDirectory, ReadData, WriteData, CreateFiles, CreateDirectories, AppendData, ReadExtendedAttributes, WriteExtendedAttributes, Traverse, ExecuteFile,DeleteSubdirectoriesAndFiles, ReadAttributes, WriteAttributes, Write, Delete, ReadPermissions, Read, ReadAndExecute, Modify, ChangePermissions, TakeOwnership, Synchronize, FullControl</maml:para>
  159. </maml:description>
  160. <command:parameterValue required="true" variableLength="false">FileSystemRights</command:parameterValue>
  161. <dev:type>
  162. <maml:name>FileSystemRights</maml:name>
  163. <maml:uri/>
  164. </dev:type>
  165. <dev:defaultValue></dev:defaultValue>
  166. </command:parameter>
  167. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  168. <maml:name>AccessType</maml:name>
  169. <maml:description>
  170. <maml:para>The type of access you want to give, either Allow or Deny (System.Security.AccessControl.AccessControlType).</maml:para>
  171. </maml:description>
  172. <command:parameterValue required="true" variableLength="false">AccessControlType</command:parameterValue>
  173. <dev:type>
  174. <maml:name>AccessControlType</maml:name>
  175. <maml:uri/>
  176. </dev:type>
  177. <dev:defaultValue></dev:defaultValue>
  178. </command:parameter>
  179. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  180. <maml:name>InheritanceFlags</maml:name>
  181. <maml:description>
  182. <maml:para>Defines what child items are going to inherit in terms of permissions. If not defined, permissions will be inherited by files and folders (ContainerInherit | ObjectInherit)
  183. There are three options:
  184. - None: The permission will not be inherited by any child item
  185. - ContainerInherit: The permission will be inherited only by directories
  186. - ObjectInherit: The permission will be inherited only by files</maml:para>
  187. </maml:description>
  188. <command:parameterValue required="true" variableLength="false">InheritanceFlags</command:parameterValue>
  189. <dev:type>
  190. <maml:name>InheritanceFlags</maml:name>
  191. <maml:uri/>
  192. </dev:type>
  193. <dev:defaultValue></dev:defaultValue>
  194. </command:parameter>
  195. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  196. <maml:name>PropagationFlags</maml:name>
  197. <maml:description>
  198. <maml:para>Specifies how Access Control Entries (ACEs) are propagated to child objects.
  199. There are three options:
  200. - None: Specifies that no propagation flags are set.
  201. - NoPropagateInherit: Specifies that the ACE is not propagated to child objects.
  202. - InheritOnly: Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects.</maml:para>
  203. </maml:description>
  204. <command:parameterValue required="true" variableLength="false">PropagationFlags</command:parameterValue>
  205. <dev:type>
  206. <maml:name>PropagationFlags</maml:name>
  207. <maml:uri/>
  208. </dev:type>
  209. <dev:defaultValue></dev:defaultValue>
  210. </command:parameter>
  211. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  212. <maml:name>PassThru</maml:name>
  213. <maml:description>
  214. <maml:para>Returns the item's access control list by using FileSystemAccessRule2. item's ACE. By default, this cmdlet does not generate any output.</maml:para>
  215. </maml:description>
  216. <dev:type>
  217. <maml:name>SwitchParameter</maml:name>
  218. <maml:uri/>
  219. </dev:type>
  220. <dev:defaultValue></dev:defaultValue>
  221. </command:parameter>
  222. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  223. <maml:name>Path</maml:name>
  224. <maml:description>
  225. <maml:para>Specifies the path to a resource. Add-Access adds permissions to the items indicated by the path. Wildcards are not permitted. This parameter accepts input from the pipeline so combining Get-Access with Get-ChildItem or Get-Item is the easiest way if you want to process multiple files or folders.</maml:para>
  226. </maml:description>
  227. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  228. <dev:type>
  229. <maml:name>String[]</maml:name>
  230. <maml:uri/>
  231. </dev:type>
  232. <dev:defaultValue></dev:defaultValue>
  233. </command:parameter>
  234. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  235. <maml:name>AppliesTo</maml:name>
  236. <maml:description>
  237. <maml:para>This parameter controls inheritance and propagation like the &quot;Apply To&quot; drop-down box in the Windows Explorer dialog. The allowed options are:
  238. - ThisFolderOnly
  239. - ThisFolderSubfolderAndFiles
  240. - ThisFolderAndSubfolders
  241. - ThisFolderAndFiles
  242. - SubfolderAndFilesOnly
  243. - SubfolersOnly
  244. - FilesOnly</maml:para>
  245. </maml:description>
  246. <command:parameterValue required="true" variableLength="false">ApplyTo</command:parameterValue>
  247. <dev:type>
  248. <maml:name>ApplyTo</maml:name>
  249. <maml:uri/>
  250. </dev:type>
  251. <dev:defaultValue></dev:defaultValue>
  252. </command:parameter>
  253. </command:parameters>
  254. <command:inputTypes>
  255. <command:inputType>
  256. <dev:type>
  257. <maml:name>FileSystemInfo or Strings</maml:name>
  258. <maml:uri/>
  259. <maml:description>
  260. <maml:para>All parameters accept pipeline input.</maml:para>
  261. </maml:description>
  262. </dev:type>
  263. <maml:description></maml:description>
  264. </command:inputType>
  265. </command:inputTypes>
  266. <command:returnValues>
  267. <command:returnValue>
  268. <dev:type>
  269. <maml:name>Null, unless the parameter PassThru is used.</maml:name>
  270. <maml:uri />
  271. <maml:description>
  272. <maml:para>Security2.FileSystemAccessRule2 for each ACE on the object, if PassThru is used.</maml:para>
  273. </maml:description>
  274. </dev:type>
  275. <maml:description></maml:description>
  276. </command:returnValue>
  277. </command:returnValues>
  278. <command:terminatingErrors>
  279. </command:terminatingErrors>
  280. <command:nonTerminatingErrors>
  281. </command:nonTerminatingErrors>
  282. <maml:alertSet>
  283. <maml:title></maml:title>
  284. <maml:alert>
  285. <maml:para></maml:para>
  286. </maml:alert>
  287. </maml:alertSet>
  288. <command:examples>
  289. <command:example>
  290. <maml:title>
  291. -------------- EXAMPLE 1 -------------- </maml:title>
  292. <maml:introduction>
  293. <maml:para>C:\PS&gt;</maml:para>
  294. C:\PS&gt; </maml:introduction>
  295. <dev:code>PS C:\&gt; dir | Add-Ace -Account forest3\test -AccessRights Read -PassThru</dev:code>
  296. <dev:remarks>
  297. <maml:para>Add read permissions to the test user account. Per default the inheritance is set to files and folders.</maml:para>
  298. <maml:para></maml:para>
  299. <maml:para></maml:para>
  300. <maml:para>Path: C:\data\Test (Inheritance enabled)
  301. Identity Rights Inheritance Type IsInherited
  302. -------- ------ ----------- ---- -----------
  303. raandree1\Test (S-1-5-21-30... FullControl ContainerInherit,... Allow False
  304. </maml:para>
  305. <maml:para></maml:para>
  306. </dev:remarks>
  307. <command:commandLines>
  308. <command:commandLine>
  309. <command:commandText>
  310. </command:commandText>
  311. </command:commandLine>
  312. </command:commandLines>
  313. </command:example>
  314. <command:example>
  315. <maml:title>
  316. -------------- EXAMPLE 2 -------------- </maml:title>
  317. <maml:introduction>
  318. <maml:para>C:\PS&gt;</maml:para>
  319. C:\PS&gt; </maml:introduction>
  320. <dev:code>PS C:\data&gt; dir | Add-Ace -Account raandree1\test -AccessRights Read -AppliesTo ThisFolderOnly -PassThru</dev:code>
  321. <dev:remarks>
  322. <maml:para>Adds read access to the test account to all items the 'dir' command returns without inheriting the access to files or folder below.</maml:para>
  323. <maml:para></maml:para>
  324. <maml:para></maml:para>
  325. <maml:para>Path: C:\data\Test (Inheritance enabled)
  326. Identity Rights Inheritance Type IsInherited
  327. -------- ------ ----------- ---- -----------
  328. raandree1\Test (S-1-5-21-30... Read, Synchronize None Allow False
  329. Path: C:\data\File1.txt (Inheritance enabled)
  330. Identity Rights Inheritance Type IsInherited
  331. -------- ------ ----------- ---- -----------
  332. raandree1\Test (S-1-5-21-30... Read, Synchronize None Allow False
  333. </maml:para>
  334. <maml:para></maml:para>
  335. </dev:remarks>
  336. <command:commandLines>
  337. <command:commandLine>
  338. <command:commandText>
  339. </command:commandText>
  340. </command:commandLine>
  341. </command:commandLines>
  342. </command:example>
  343. </command:examples>
  344. <maml:relatedLinks>
  345. <maml:navigationLink>
  346. <maml:linkText>http://gallery.technet.microsoft.com/scriptcenter/1abd77a5-9c0b-4a2b-acef-90dbb2b84e85</maml:linkText>
  347. <maml:uri/>
  348. </maml:navigationLink>
  349. </maml:relatedLinks>
  350. </command:command>
  351. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  352. <!--Generated by Help Cmdlet Editor-->
  353. <command:details>
  354. <command:name>Copy-Access</command:name>
  355. <maml:description>
  356. <maml:para></maml:para>
  357. </maml:description>
  358. <maml:copyright>
  359. <maml:para />
  360. <!--Add copy right info here.-->
  361. </maml:copyright>
  362. <command:verb>Copy</command:verb>
  363. <command:noun>Access</command:noun>
  364. <!--Add Dev version info here.-->
  365. <dev:version />
  366. </command:details>
  367. <maml:description>
  368. <!--This is the Description section-->
  369. <maml:para></maml:para>
  370. </maml:description>
  371. <command:syntax> <command:syntaxItem>
  372. <maml:name>Copy-Access</maml:name>
  373. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  374. <maml:name>Path</maml:name>
  375. <maml:description>
  376. <maml:para></maml:para>
  377. </maml:description>
  378. <command:parameterValue required="true" variableLength = "false" >String</command:parameterValue>
  379. </command:parameter>
  380. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
  381. <maml:name>DestinationPath</maml:name>
  382. <maml:description>
  383. <maml:para></maml:para>
  384. </maml:description>
  385. <command:parameterValue required="true" variableLength = "false" >String</command:parameterValue>
  386. </command:parameter>
  387. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "3" >
  388. <maml:name>Account</maml:name>
  389. <maml:description>
  390. <maml:para></maml:para>
  391. </maml:description>
  392. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  393. </command:parameter>
  394. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  395. <maml:name>AccessType</maml:name>
  396. <maml:description>
  397. <maml:para></maml:para>
  398. </maml:description>
  399. <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
  400. </command:parameter>
  401. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  402. <maml:name>PassThru</maml:name>
  403. <maml:description>
  404. <maml:para></maml:para>
  405. </maml:description>
  406. </command:parameter>
  407. </command:syntaxItem>
  408. </command:syntax>
  409. <command:parameters>
  410. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  411. <maml:name>Path</maml:name>
  412. <maml:description>
  413. <maml:para></maml:para>
  414. </maml:description>
  415. <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
  416. <dev:type>
  417. <maml:name>String</maml:name>
  418. <maml:uri/>
  419. </dev:type>
  420. <dev:defaultValue></dev:defaultValue>
  421. </command:parameter>
  422. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
  423. <maml:name>DestinationPath</maml:name>
  424. <maml:description>
  425. <maml:para></maml:para>
  426. </maml:description>
  427. <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
  428. <dev:type>
  429. <maml:name>String</maml:name>
  430. <maml:uri/>
  431. </dev:type>
  432. <dev:defaultValue></dev:defaultValue>
  433. </command:parameter>
  434. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3">
  435. <maml:name>Account</maml:name>
  436. <maml:description>
  437. <maml:para></maml:para>
  438. </maml:description>
  439. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  440. <dev:type>
  441. <maml:name>IdentityReference2</maml:name>
  442. <maml:uri/>
  443. </dev:type>
  444. <dev:defaultValue></dev:defaultValue>
  445. </command:parameter>
  446. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  447. <maml:name>AccessType</maml:name>
  448. <maml:description>
  449. <maml:para></maml:para>
  450. </maml:description>
  451. <command:parameterValue required="true" variableLength="false">AccessControlType</command:parameterValue>
  452. <dev:type>
  453. <maml:name>AccessControlType</maml:name>
  454. <maml:uri/>
  455. </dev:type>
  456. <dev:defaultValue></dev:defaultValue>
  457. </command:parameter>
  458. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  459. <maml:name>PassThru</maml:name>
  460. <maml:description>
  461. <maml:para></maml:para>
  462. </maml:description>
  463. <dev:type>
  464. <maml:name>SwitchParameter</maml:name>
  465. <maml:uri/>
  466. </dev:type>
  467. <dev:defaultValue></dev:defaultValue>
  468. </command:parameter>
  469. </command:parameters>
  470. <command:inputTypes>
  471. <command:inputType>
  472. <dev:type>
  473. <maml:name></maml:name>
  474. <maml:uri/>
  475. <maml:description>
  476. <maml:para></maml:para>
  477. </maml:description>
  478. </dev:type>
  479. <maml:description></maml:description>
  480. </command:inputType>
  481. </command:inputTypes>
  482. <command:returnValues>
  483. <command:returnValue>
  484. <dev:type>
  485. <maml:name></maml:name>
  486. <maml:uri />
  487. <maml:description>
  488. <maml:para></maml:para>
  489. </maml:description>
  490. </dev:type>
  491. <maml:description></maml:description>
  492. </command:returnValue>
  493. </command:returnValues>
  494. <command:terminatingErrors>
  495. </command:terminatingErrors>
  496. <command:nonTerminatingErrors>
  497. </command:nonTerminatingErrors>
  498. <maml:alertSet>
  499. <maml:title></maml:title>
  500. <maml:alert>
  501. <maml:para></maml:para>
  502. </maml:alert>
  503. </maml:alertSet>
  504. <command:examples>
  505. </command:examples>
  506. <maml:relatedLinks>
  507. </maml:relatedLinks>
  508. </command:command>
  509. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  510. <!--Generated by Help Cmdlet Editor-->
  511. <command:details>
  512. <command:name>Disable-Inheritance</command:name>
  513. <maml:description>
  514. <maml:para></maml:para>
  515. </maml:description>
  516. <maml:copyright>
  517. <maml:para />
  518. <!--Add copy right info here.-->
  519. </maml:copyright>
  520. <command:verb>Disable</command:verb>
  521. <command:noun>Inheritance</command:noun>
  522. <!--Add Dev version info here.-->
  523. <dev:version />
  524. </command:details>
  525. <maml:description>
  526. <!--This is the Description section-->
  527. <maml:para></maml:para>
  528. </maml:description>
  529. <command:syntax> <command:syntaxItem>
  530. <maml:name>Disable-Inheritance</maml:name>
  531. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  532. <maml:name>PassThru</maml:name>
  533. <maml:description>
  534. <maml:para></maml:para>
  535. </maml:description>
  536. </command:parameter>
  537. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  538. <maml:name>PreserveInheritedAccessRules</maml:name>
  539. <maml:description>
  540. <maml:para></maml:para>
  541. </maml:description>
  542. </command:parameter>
  543. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  544. <maml:name>Path</maml:name>
  545. <maml:description>
  546. <maml:para></maml:para>
  547. </maml:description>
  548. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  549. </command:parameter>
  550. </command:syntaxItem>
  551. </command:syntax>
  552. <command:parameters>
  553. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  554. <maml:name>PassThru</maml:name>
  555. <maml:description>
  556. <maml:para></maml:para>
  557. </maml:description>
  558. <dev:type>
  559. <maml:name>SwitchParameter</maml:name>
  560. <maml:uri/>
  561. </dev:type>
  562. <dev:defaultValue></dev:defaultValue>
  563. </command:parameter>
  564. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  565. <maml:name>PreserveInheritedAccessRules</maml:name>
  566. <maml:description>
  567. <maml:para></maml:para>
  568. </maml:description>
  569. <dev:type>
  570. <maml:name>SwitchParameter</maml:name>
  571. <maml:uri/>
  572. </dev:type>
  573. <dev:defaultValue></dev:defaultValue>
  574. </command:parameter>
  575. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  576. <maml:name>Path</maml:name>
  577. <maml:description>
  578. <maml:para></maml:para>
  579. </maml:description>
  580. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  581. <dev:type>
  582. <maml:name>String[]</maml:name>
  583. <maml:uri/>
  584. </dev:type>
  585. <dev:defaultValue></dev:defaultValue>
  586. </command:parameter>
  587. </command:parameters>
  588. <command:inputTypes>
  589. <command:inputType>
  590. <dev:type>
  591. <maml:name></maml:name>
  592. <maml:uri/>
  593. <maml:description>
  594. <maml:para></maml:para>
  595. </maml:description>
  596. </dev:type>
  597. <maml:description></maml:description>
  598. </command:inputType>
  599. </command:inputTypes>
  600. <command:returnValues>
  601. <command:returnValue>
  602. <dev:type>
  603. <maml:name></maml:name>
  604. <maml:uri />
  605. <maml:description>
  606. <maml:para></maml:para>
  607. </maml:description>
  608. </dev:type>
  609. <maml:description></maml:description>
  610. </command:returnValue>
  611. </command:returnValues>
  612. <command:terminatingErrors>
  613. </command:terminatingErrors>
  614. <command:nonTerminatingErrors>
  615. </command:nonTerminatingErrors>
  616. <maml:alertSet>
  617. <maml:title></maml:title>
  618. <maml:alert>
  619. <maml:para></maml:para>
  620. </maml:alert>
  621. </maml:alertSet>
  622. <command:examples>
  623. </command:examples>
  624. <maml:relatedLinks>
  625. </maml:relatedLinks>
  626. </command:command>
  627. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  628. <!--Generated by Help Cmdlet Editor-->
  629. <command:details>
  630. <command:name>Enable-Inheritance</command:name>
  631. <maml:description>
  632. <maml:para></maml:para>
  633. </maml:description>
  634. <maml:copyright>
  635. <maml:para />
  636. <!--Add copy right info here.-->
  637. </maml:copyright>
  638. <command:verb>Enable</command:verb>
  639. <command:noun>Inheritance</command:noun>
  640. <!--Add Dev version info here.-->
  641. <dev:version />
  642. </command:details>
  643. <maml:description>
  644. <!--This is the Description section-->
  645. <maml:para></maml:para>
  646. </maml:description>
  647. <command:syntax> <command:syntaxItem>
  648. <maml:name>Enable-Inheritance</maml:name>
  649. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  650. <maml:name>PassThru</maml:name>
  651. <maml:description>
  652. <maml:para></maml:para>
  653. </maml:description>
  654. </command:parameter>
  655. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  656. <maml:name>RemoveInheritedAccessRules</maml:name>
  657. <maml:description>
  658. <maml:para></maml:para>
  659. </maml:description>
  660. </command:parameter>
  661. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  662. <maml:name>Path</maml:name>
  663. <maml:description>
  664. <maml:para></maml:para>
  665. </maml:description>
  666. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  667. </command:parameter>
  668. </command:syntaxItem>
  669. </command:syntax>
  670. <command:parameters>
  671. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  672. <maml:name>PassThru</maml:name>
  673. <maml:description>
  674. <maml:para></maml:para>
  675. </maml:description>
  676. <dev:type>
  677. <maml:name>SwitchParameter</maml:name>
  678. <maml:uri/>
  679. </dev:type>
  680. <dev:defaultValue></dev:defaultValue>
  681. </command:parameter>
  682. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  683. <maml:name>RemoveInheritedAccessRules</maml:name>
  684. <maml:description>
  685. <maml:para></maml:para>
  686. </maml:description>
  687. <dev:type>
  688. <maml:name>SwitchParameter</maml:name>
  689. <maml:uri/>
  690. </dev:type>
  691. <dev:defaultValue></dev:defaultValue>
  692. </command:parameter>
  693. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  694. <maml:name>Path</maml:name>
  695. <maml:description>
  696. <maml:para></maml:para>
  697. </maml:description>
  698. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  699. <dev:type>
  700. <maml:name>String[]</maml:name>
  701. <maml:uri/>
  702. </dev:type>
  703. <dev:defaultValue></dev:defaultValue>
  704. </command:parameter>
  705. </command:parameters>
  706. <command:inputTypes>
  707. <command:inputType>
  708. <dev:type>
  709. <maml:name></maml:name>
  710. <maml:uri/>
  711. <maml:description>
  712. <maml:para></maml:para>
  713. </maml:description>
  714. </dev:type>
  715. <maml:description></maml:description>
  716. </command:inputType>
  717. </command:inputTypes>
  718. <command:returnValues>
  719. <command:returnValue>
  720. <dev:type>
  721. <maml:name></maml:name>
  722. <maml:uri />
  723. <maml:description>
  724. <maml:para></maml:para>
  725. </maml:description>
  726. </dev:type>
  727. <maml:description></maml:description>
  728. </command:returnValue>
  729. </command:returnValues>
  730. <command:terminatingErrors>
  731. </command:terminatingErrors>
  732. <command:nonTerminatingErrors>
  733. </command:nonTerminatingErrors>
  734. <maml:alertSet>
  735. <maml:title></maml:title>
  736. <maml:alert>
  737. <maml:para></maml:para>
  738. </maml:alert>
  739. </maml:alertSet>
  740. <command:examples>
  741. </command:examples>
  742. <maml:relatedLinks>
  743. </maml:relatedLinks>
  744. </command:command>
  745. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  746. <!--Generated by Help Cmdlet Editor-->
  747. <command:details>
  748. <command:name>Get-Access</command:name>
  749. <maml:description>
  750. <maml:para>Gets all Access Control Entries in the item's Discretionary Access Control List.</maml:para>
  751. </maml:description>
  752. <maml:copyright>
  753. <maml:para />
  754. <!--Add copy right info here.-->
  755. </maml:copyright>
  756. <command:verb>Get</command:verb>
  757. <command:noun>Access</command:noun>
  758. <!--Add Dev version info here.-->
  759. <dev:version />
  760. </command:details>
  761. <maml:description>
  762. <!--This is the Description section-->
  763. <maml:para>The function returns all ACEs defined on the item. You can filter the ACEs using the switches ExcludeExplicit and ExcludeInherited.
  764. Whether the item inherits the permissions from its parent is indicated in the output as well.
  765. The function needs to know the file or folder path. The path can be an argument or be piped into the function as string or FileSystemInfo object (result of Get-ChildItem or Get-Item).</maml:para>
  766. </maml:description>
  767. <command:syntax> <command:syntaxItem>
  768. <maml:name>Get-Access</maml:name>
  769. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  770. <maml:name>Account</maml:name>
  771. <maml:description>
  772. <maml:para>Takes the account that is used to filter the output. Only ACEs are shown that match the given user account.
  773. This can either be a SID (well known, domain or local) or a account name. The account name must be specified in the syntax 'Domain\UserName'. Well known accounts are not part of the domain or local machine. Use for example 'NT Authority\System' or 'Builtin\Administrators'.</maml:para>
  774. </maml:description>
  775. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  776. </command:parameter>
  777. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  778. <maml:name>ExcludeExplicit</maml:name>
  779. <maml:description>
  780. <maml:para>If set, only inherited ACEs are returned.</maml:para>
  781. </maml:description>
  782. </command:parameter>
  783. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  784. <maml:name>ExcludeInherited</maml:name>
  785. <maml:description>
  786. <maml:para>If set, only explicitly non-inherited ACEs are returned.</maml:para>
  787. </maml:description>
  788. </command:parameter>
  789. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  790. <maml:name>Path</maml:name>
  791. <maml:description>
  792. <maml:para>Specifies the path to the resource. Get-Access gets the permissions of the items indicated by the path. Wildcards are not permitted. This parameter also accepts input from the pipeline so combining Get-Access with Get-ChildItem or Get-Item is the easiest way if you want to get the access rights of multiple files and folders.</maml:para>
  793. </maml:description>
  794. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  795. </command:parameter>
  796. </command:syntaxItem>
  797. </command:syntax>
  798. <command:parameters>
  799. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  800. <maml:name>Account</maml:name>
  801. <maml:description>
  802. <maml:para>Takes the account that is used to filter the output. Only ACEs are shown that match the given user account.
  803. This can either be a SID (well known, domain or local) or a account name. The account name must be specified in the syntax 'Domain\UserName'. Well known accounts are not part of the domain or local machine. Use for example 'NT Authority\System' or 'Builtin\Administrators'.</maml:para>
  804. </maml:description>
  805. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  806. <dev:type>
  807. <maml:name>IdentityReference2</maml:name>
  808. <maml:uri/>
  809. </dev:type>
  810. <dev:defaultValue></dev:defaultValue>
  811. </command:parameter>
  812. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  813. <maml:name>ExcludeExplicit</maml:name>
  814. <maml:description>
  815. <maml:para>If set, only inherited ACEs are returned.</maml:para>
  816. </maml:description>
  817. <dev:type>
  818. <maml:name>SwitchParameter</maml:name>
  819. <maml:uri/>
  820. </dev:type>
  821. <dev:defaultValue></dev:defaultValue>
  822. </command:parameter>
  823. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  824. <maml:name>ExcludeInherited</maml:name>
  825. <maml:description>
  826. <maml:para>If set, only explicitly non-inherited ACEs are returned.</maml:para>
  827. </maml:description>
  828. <dev:type>
  829. <maml:name>SwitchParameter</maml:name>
  830. <maml:uri/>
  831. </dev:type>
  832. <dev:defaultValue></dev:defaultValue>
  833. </command:parameter>
  834. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  835. <maml:name>Path</maml:name>
  836. <maml:description>
  837. <maml:para>Specifies the path to the resource. Get-Access gets the permissions of the items indicated by the path. Wildcards are not permitted. This parameter also accepts input from the pipeline so combining Get-Access with Get-ChildItem or Get-Item is the easiest way if you want to get the access rights of multiple files and folders.</maml:para>
  838. </maml:description>
  839. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  840. <dev:type>
  841. <maml:name>String[]</maml:name>
  842. <maml:uri/>
  843. </dev:type>
  844. <dev:defaultValue></dev:defaultValue>
  845. </command:parameter>
  846. </command:parameters>
  847. <command:inputTypes>
  848. <command:inputType>
  849. <dev:type>
  850. <maml:name>System.String</maml:name>
  851. <maml:uri/>
  852. <maml:description>
  853. <maml:para>You can pipe a string that contains a path.</maml:para>
  854. </maml:description>
  855. </dev:type>
  856. <maml:description></maml:description>
  857. </command:inputType>
  858. </command:inputTypes>
  859. <command:returnValues>
  860. <command:returnValue>
  861. <dev:type>
  862. <maml:name>Security2.FileSystemAccessRule2</maml:name>
  863. <maml:uri />
  864. <maml:description>
  865. <maml:para>Get-Ace returns objects that represent the item's Access Control Entries.</maml:para>
  866. </maml:description>
  867. </dev:type>
  868. <maml:description></maml:description>
  869. </command:returnValue>
  870. </command:returnValues>
  871. <command:terminatingErrors>
  872. </command:terminatingErrors>
  873. <command:nonTerminatingErrors>
  874. </command:nonTerminatingErrors>
  875. <maml:alertSet>
  876. <maml:title></maml:title>
  877. <maml:alert>
  878. <maml:para></maml:para>
  879. </maml:alert>
  880. </maml:alertSet>
  881. <command:examples>
  882. <command:example>
  883. <maml:title>
  884. -------------- EXAMPLE 1 -------------- </maml:title>
  885. <maml:introduction>
  886. <maml:para>C:\PS&gt;</maml:para>
  887. C:\PS&gt; </maml:introduction>
  888. <dev:code>Get-Item c:\ | Get-Access</dev:code>
  889. <dev:remarks>
  890. <maml:para>Get all ACEs defined on the root of drive C:</maml:para>
  891. <maml:para></maml:para>
  892. <maml:para></maml:para>
  893. <maml:para> Path: C:\ (Inheritance disabled)
  894. Identity Rights Inheritance Type IsInherited
  895. -------- ------ ----------- ---- -----------
  896. NT AUTHORITY\Authenticated ... AppendData None Allow False
  897. NT AUTHORITY\Authenticated ... -536805376 ContainerIn... Allow False
  898. NT AUTHORITY\SYSTEM (S-1-5-18) FullControl None Allow False
  899. NT AUTHORITY\SYSTEM (S-1-5-18) 268435456 ContainerIn... Allow False
  900. BUILTIN\Administrators (S-1... 268435456 ContainerIn... Allow False
  901. BUILTIN\Administrators (S-1... FullControl None Allow False
  902. BUILTIN\Users (S-1-5-32-545) ReadAndExec... ContainerIn... Allow False
  903. </maml:para>
  904. <maml:para></maml:para>
  905. </dev:remarks>
  906. <command:commandLines>
  907. <command:commandLine>
  908. <command:commandText>
  909. </command:commandText>
  910. </command:commandLine>
  911. </command:commandLines>
  912. </command:example>
  913. <command:example>
  914. <maml:title>
  915. -------------- EXAMPLE 2 -------------- </maml:title>
  916. <maml:introduction>
  917. <maml:para>C:\PS&gt;</maml:para>
  918. C:\PS&gt; </maml:introduction>
  919. <dev:code>PS C:\&gt; dir | Where-Object { $_.PSIsContainer } | Get-Ace -ExcludeInherited</dev:code>
  920. <dev:remarks>
  921. <maml:para>This command returns only explicitly set ACEs on all folders.</maml:para>
  922. <maml:para></maml:para>
  923. <maml:para></maml:para>
  924. <maml:para>
  925. </maml:para>
  926. <maml:para></maml:para>
  927. </dev:remarks>
  928. <command:commandLines>
  929. <command:commandLine>
  930. <command:commandText>
  931. </command:commandText>
  932. </command:commandLine>
  933. </command:commandLines>
  934. </command:example>
  935. <command:example>
  936. <maml:title>
  937. -------------- EXMAPLE 3 -------------- </maml:title>
  938. <maml:introduction>
  939. <maml:para>C:\PS&gt;</maml:para>
  940. C:\PS&gt; </maml:introduction>
  941. <dev:code>PS C:\&gt; dir | Get-Access -Account Builtin\Users</dev:code>
  942. <dev:remarks>
  943. <maml:para>This command returns all Access Control Entries whose account match 'Builtin\Users'.</maml:para>
  944. <maml:para></maml:para>
  945. <maml:para></maml:para>
  946. <maml:para> Path: C:\Users\raandree\Desktop\ADRAP.docx (Inheritance disabled)
  947. Account Access Rights Applies to Type IsInherited
  948. ------- ------------- ---------- ---- -----------
  949. BUILTIN\Users (S-1-5-32-545) Modify, Synch... ThisFolderOnly Allow False
  950. </maml:para>
  951. <maml:para></maml:para>
  952. </dev:remarks>
  953. <command:commandLines>
  954. <command:commandLine>
  955. <command:commandText>
  956. </command:commandText>
  957. </command:commandLine>
  958. </command:commandLines>
  959. </command:example>
  960. </command:examples>
  961. <maml:relatedLinks>
  962. <maml:navigationLink>
  963. <maml:linkText>http://gallery.technet.microsoft.com/scriptcenter/1abd77a5-9c0b-4a2b-acef-90dbb2b84e85</maml:linkText>
  964. <maml:uri/>
  965. </maml:navigationLink>
  966. </maml:relatedLinks>
  967. </command:command>
  968. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  969. <!--Generated by Help Cmdlet Editor-->
  970. <command:details>
  971. <command:name>Get-EffectiveAccess</command:name>
  972. <maml:description>
  973. <maml:para></maml:para>
  974. </maml:description>
  975. <maml:copyright>
  976. <maml:para />
  977. <!--Add copy right info here.-->
  978. </maml:copyright>
  979. <command:verb>Get</command:verb>
  980. <command:noun>EffectiveAccess</command:noun>
  981. <!--Add Dev version info here.-->
  982. <dev:version />
  983. </command:details>
  984. <maml:description>
  985. <!--This is the Description section-->
  986. <maml:para></maml:para>
  987. </maml:description>
  988. <command:syntax> <command:syntaxItem>
  989. <maml:name>Get-EffectiveAccess</maml:name>
  990. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  991. <maml:name>Account</maml:name>
  992. <maml:description>
  993. <maml:para></maml:para>
  994. </maml:description>
  995. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  996. </command:parameter>
  997. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  998. <maml:name>Path</maml:name>
  999. <maml:description>
  1000. <maml:para></maml:para>
  1001. </maml:description>
  1002. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1003. </command:parameter>
  1004. </command:syntaxItem>
  1005. </command:syntax>
  1006. <command:parameters>
  1007. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1008. <maml:name>Account</maml:name>
  1009. <maml:description>
  1010. <maml:para></maml:para>
  1011. </maml:description>
  1012. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  1013. <dev:type>
  1014. <maml:name>IdentityReference2</maml:name>
  1015. <maml:uri/>
  1016. </dev:type>
  1017. <dev:defaultValue></dev:defaultValue>
  1018. </command:parameter>
  1019. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1020. <maml:name>Path</maml:name>
  1021. <maml:description>
  1022. <maml:para></maml:para>
  1023. </maml:description>
  1024. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1025. <dev:type>
  1026. <maml:name>String[]</maml:name>
  1027. <maml:uri/>
  1028. </dev:type>
  1029. <dev:defaultValue></dev:defaultValue>
  1030. </command:parameter>
  1031. </command:parameters>
  1032. <command:inputTypes>
  1033. <command:inputType>
  1034. <dev:type>
  1035. <maml:name></maml:name>
  1036. <maml:uri/>
  1037. <maml:description>
  1038. <maml:para></maml:para>
  1039. </maml:description>
  1040. </dev:type>
  1041. <maml:description></maml:description>
  1042. </command:inputType>
  1043. </command:inputTypes>
  1044. <command:returnValues>
  1045. <command:returnValue>
  1046. <dev:type>
  1047. <maml:name></maml:name>
  1048. <maml:uri />
  1049. <maml:description>
  1050. <maml:para></maml:para>
  1051. </maml:description>
  1052. </dev:type>
  1053. <maml:description></maml:description>
  1054. </command:returnValue>
  1055. </command:returnValues>
  1056. <command:terminatingErrors>
  1057. </command:terminatingErrors>
  1058. <command:nonTerminatingErrors>
  1059. </command:nonTerminatingErrors>
  1060. <maml:alertSet>
  1061. <maml:title></maml:title>
  1062. <maml:alert>
  1063. <maml:para></maml:para>
  1064. </maml:alert>
  1065. </maml:alertSet>
  1066. <command:examples>
  1067. </command:examples>
  1068. <maml:relatedLinks>
  1069. </maml:relatedLinks>
  1070. </command:command>
  1071. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1072. <!--Generated by Help Cmdlet Editor-->
  1073. <command:details>
  1074. <command:name>Get-Inheritance</command:name>
  1075. <maml:description>
  1076. <maml:para></maml:para>
  1077. </maml:description>
  1078. <maml:copyright>
  1079. <maml:para />
  1080. <!--Add copy right info here.-->
  1081. </maml:copyright>
  1082. <command:verb>Get</command:verb>
  1083. <command:noun>Inheritance</command:noun>
  1084. <!--Add Dev version info here.-->
  1085. <dev:version />
  1086. </command:details>
  1087. <maml:description>
  1088. <!--This is the Description section-->
  1089. <maml:para></maml:para>
  1090. </maml:description>
  1091. <command:syntax> <command:syntaxItem>
  1092. <maml:name>Get-Inheritance</maml:name>
  1093. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1094. <maml:name>Path</maml:name>
  1095. <maml:description>
  1096. <maml:para></maml:para>
  1097. </maml:description>
  1098. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1099. </command:parameter>
  1100. </command:syntaxItem>
  1101. </command:syntax>
  1102. <command:parameters>
  1103. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1104. <maml:name>Path</maml:name>
  1105. <maml:description>
  1106. <maml:para></maml:para>
  1107. </maml:description>
  1108. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1109. <dev:type>
  1110. <maml:name>String[]</maml:name>
  1111. <maml:uri/>
  1112. </dev:type>
  1113. <dev:defaultValue></dev:defaultValue>
  1114. </command:parameter>
  1115. </command:parameters>
  1116. <command:inputTypes>
  1117. <command:inputType>
  1118. <dev:type>
  1119. <maml:name></maml:name>
  1120. <maml:uri/>
  1121. <maml:description>
  1122. <maml:para></maml:para>
  1123. </maml:description>
  1124. </dev:type>
  1125. <maml:description></maml:description>
  1126. </command:inputType>
  1127. </command:inputTypes>
  1128. <command:returnValues>
  1129. <command:returnValue>
  1130. <dev:type>
  1131. <maml:name></maml:name>
  1132. <maml:uri />
  1133. <maml:description>
  1134. <maml:para></maml:para>
  1135. </maml:description>
  1136. </dev:type>
  1137. <maml:description></maml:description>
  1138. </command:returnValue>
  1139. </command:returnValues>
  1140. <command:terminatingErrors>
  1141. </command:terminatingErrors>
  1142. <command:nonTerminatingErrors>
  1143. </command:nonTerminatingErrors>
  1144. <maml:alertSet>
  1145. <maml:title></maml:title>
  1146. <maml:alert>
  1147. <maml:para></maml:para>
  1148. </maml:alert>
  1149. </maml:alertSet>
  1150. <command:examples>
  1151. </command:examples>
  1152. <maml:relatedLinks>
  1153. </maml:relatedLinks>
  1154. </command:command>
  1155. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1156. <!--Generated by Help Cmdlet Editor-->
  1157. <command:details>
  1158. <command:name>Get-OrphanedAccess</command:name>
  1159. <maml:description>
  1160. <maml:para></maml:para>
  1161. </maml:description>
  1162. <maml:copyright>
  1163. <maml:para />
  1164. <!--Add copy right info here.-->
  1165. </maml:copyright>
  1166. <command:verb>Get</command:verb>
  1167. <command:noun>OrphanedAccess</command:noun>
  1168. <!--Add Dev version info here.-->
  1169. <dev:version />
  1170. </command:details>
  1171. <maml:description>
  1172. <!--This is the Description section-->
  1173. <maml:para></maml:para>
  1174. </maml:description>
  1175. <command:syntax> <command:syntaxItem>
  1176. <maml:name>Get-OrphanedAccess</maml:name>
  1177. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1178. <maml:name>Account</maml:name>
  1179. <maml:description>
  1180. <maml:para></maml:para>
  1181. </maml:description>
  1182. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  1183. </command:parameter>
  1184. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1185. <maml:name>ExcludeExplicit</maml:name>
  1186. <maml:description>
  1187. <maml:para></maml:para>
  1188. </maml:description>
  1189. </command:parameter>
  1190. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1191. <maml:name>ExcludeInherited</maml:name>
  1192. <maml:description>
  1193. <maml:para></maml:para>
  1194. </maml:description>
  1195. </command:parameter>
  1196. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1197. <maml:name>Path</maml:name>
  1198. <maml:description>
  1199. <maml:para></maml:para>
  1200. </maml:description>
  1201. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1202. </command:parameter>
  1203. </command:syntaxItem>
  1204. </command:syntax>
  1205. <command:parameters>
  1206. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1207. <maml:name>Account</maml:name>
  1208. <maml:description>
  1209. <maml:para></maml:para>
  1210. </maml:description>
  1211. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  1212. <dev:type>
  1213. <maml:name>IdentityReference2</maml:name>
  1214. <maml:uri/>
  1215. </dev:type>
  1216. <dev:defaultValue></dev:defaultValue>
  1217. </command:parameter>
  1218. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1219. <maml:name>ExcludeExplicit</maml:name>
  1220. <maml:description>
  1221. <maml:para></maml:para>
  1222. </maml:description>
  1223. <dev:type>
  1224. <maml:name>SwitchParameter</maml:name>
  1225. <maml:uri/>
  1226. </dev:type>
  1227. <dev:defaultValue></dev:defaultValue>
  1228. </command:parameter>
  1229. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1230. <maml:name>ExcludeInherited</maml:name>
  1231. <maml:description>
  1232. <maml:para></maml:para>
  1233. </maml:description>
  1234. <dev:type>
  1235. <maml:name>SwitchParameter</maml:name>
  1236. <maml:uri/>
  1237. </dev:type>
  1238. <dev:defaultValue></dev:defaultValue>
  1239. </command:parameter>
  1240. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1241. <maml:name>Path</maml:name>
  1242. <maml:description>
  1243. <maml:para></maml:para>
  1244. </maml:description>
  1245. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1246. <dev:type>
  1247. <maml:name>String[]</maml:name>
  1248. <maml:uri/>
  1249. </dev:type>
  1250. <dev:defaultValue></dev:defaultValue>
  1251. </command:parameter>
  1252. </command:parameters>
  1253. <command:inputTypes>
  1254. <command:inputType>
  1255. <dev:type>
  1256. <maml:name></maml:name>
  1257. <maml:uri/>
  1258. <maml:description>
  1259. <maml:para></maml:para>
  1260. </maml:description>
  1261. </dev:type>
  1262. <maml:description></maml:description>
  1263. </command:inputType>
  1264. </command:inputTypes>
  1265. <command:returnValues>
  1266. <command:returnValue>
  1267. <dev:type>
  1268. <maml:name></maml:name>
  1269. <maml:uri />
  1270. <maml:description>
  1271. <maml:para></maml:para>
  1272. </maml:description>
  1273. </dev:type>
  1274. <maml:description></maml:description>
  1275. </command:returnValue>
  1276. </command:returnValues>
  1277. <command:terminatingErrors>
  1278. </command:terminatingErrors>
  1279. <command:nonTerminatingErrors>
  1280. </command:nonTerminatingErrors>
  1281. <maml:alertSet>
  1282. <maml:title></maml:title>
  1283. <maml:alert>
  1284. <maml:para></maml:para>
  1285. </maml:alert>
  1286. </maml:alertSet>
  1287. <command:examples>
  1288. </command:examples>
  1289. <maml:relatedLinks>
  1290. </maml:relatedLinks>
  1291. </command:command>
  1292. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1293. <!--Generated by Help Cmdlet Editor-->
  1294. <command:details>
  1295. <command:name>Get-Owner</command:name>
  1296. <maml:description>
  1297. <maml:para></maml:para>
  1298. </maml:description>
  1299. <maml:copyright>
  1300. <maml:para />
  1301. <!--Add copy right info here.-->
  1302. </maml:copyright>
  1303. <command:verb>Get</command:verb>
  1304. <command:noun>Owner</command:noun>
  1305. <!--Add Dev version info here.-->
  1306. <dev:version />
  1307. </command:details>
  1308. <maml:description>
  1309. <!--This is the Description section-->
  1310. <maml:para></maml:para>
  1311. </maml:description>
  1312. <command:syntax> <command:syntaxItem>
  1313. <maml:name>Get-Owner</maml:name>
  1314. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1315. <maml:name>Path</maml:name>
  1316. <maml:description>
  1317. <maml:para></maml:para>
  1318. </maml:description>
  1319. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1320. </command:parameter>
  1321. </command:syntaxItem>
  1322. </command:syntax>
  1323. <command:parameters>
  1324. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1325. <maml:name>Path</maml:name>
  1326. <maml:description>
  1327. <maml:para></maml:para>
  1328. </maml:description>
  1329. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1330. <dev:type>
  1331. <maml:name>String[]</maml:name>
  1332. <maml:uri/>
  1333. </dev:type>
  1334. <dev:defaultValue></dev:defaultValue>
  1335. </command:parameter>
  1336. </command:parameters>
  1337. <command:inputTypes>
  1338. <command:inputType>
  1339. <dev:type>
  1340. <maml:name></maml:name>
  1341. <maml:uri/>
  1342. <maml:description>
  1343. <maml:para></maml:para>
  1344. </maml:description>
  1345. </dev:type>
  1346. <maml:description></maml:description>
  1347. </command:inputType>
  1348. </command:inputTypes>
  1349. <command:returnValues>
  1350. <command:returnValue>
  1351. <dev:type>
  1352. <maml:name></maml:name>
  1353. <maml:uri />
  1354. <maml:description>
  1355. <maml:para></maml:para>
  1356. </maml:description>
  1357. </dev:type>
  1358. <maml:description></maml:description>
  1359. </command:returnValue>
  1360. </command:returnValues>
  1361. <command:terminatingErrors>
  1362. </command:terminatingErrors>
  1363. <command:nonTerminatingErrors>
  1364. </command:nonTerminatingErrors>
  1365. <maml:alertSet>
  1366. <maml:title></maml:title>
  1367. <maml:alert>
  1368. <maml:para></maml:para>
  1369. </maml:alert>
  1370. </maml:alertSet>
  1371. <command:examples>
  1372. </command:examples>
  1373. <maml:relatedLinks>
  1374. </maml:relatedLinks>
  1375. </command:command>
  1376. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1377. <!--Generated by Help Cmdlet Editor-->
  1378. <command:details>
  1379. <command:name>Get-SimpleAccess</command:name>
  1380. <maml:description>
  1381. <maml:para></maml:para>
  1382. </maml:description>
  1383. <maml:copyright>
  1384. <maml:para />
  1385. <!--Add copy right info here.-->
  1386. </maml:copyright>
  1387. <command:verb>Get</command:verb>
  1388. <command:noun>SimpleAccess</command:noun>
  1389. <!--Add Dev version info here.-->
  1390. <dev:version />
  1391. </command:details>
  1392. <maml:description>
  1393. <!--This is the Description section-->
  1394. <maml:para></maml:para>
  1395. </maml:description>
  1396. <command:syntax> <command:syntaxItem>
  1397. <maml:name>Get-SimpleAccess</maml:name>
  1398. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1399. <maml:name>IncludeRootFolder</maml:name>
  1400. <maml:description>
  1401. <maml:para></maml:para>
  1402. </maml:description>
  1403. </command:parameter>
  1404. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1405. <maml:name>Account</maml:name>
  1406. <maml:description>
  1407. <maml:para></maml:para>
  1408. </maml:description>
  1409. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  1410. </command:parameter>
  1411. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1412. <maml:name>ExcludeExplicit</maml:name>
  1413. <maml:description>
  1414. <maml:para></maml:para>
  1415. </maml:description>
  1416. </command:parameter>
  1417. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1418. <maml:name>ExcludeInherited</maml:name>
  1419. <maml:description>
  1420. <maml:para></maml:para>
  1421. </maml:description>
  1422. </command:parameter>
  1423. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1424. <maml:name>Path</maml:name>
  1425. <maml:description>
  1426. <maml:para></maml:para>
  1427. </maml:description>
  1428. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1429. </command:parameter>
  1430. </command:syntaxItem>
  1431. </command:syntax>
  1432. <command:parameters>
  1433. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1434. <maml:name>IncludeRootFolder</maml:name>
  1435. <maml:description>
  1436. <maml:para></maml:para>
  1437. </maml:description>
  1438. <dev:type>
  1439. <maml:name>SwitchParameter</maml:name>
  1440. <maml:uri/>
  1441. </dev:type>
  1442. <dev:defaultValue></dev:defaultValue>
  1443. </command:parameter>
  1444. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1445. <maml:name>Account</maml:name>
  1446. <maml:description>
  1447. <maml:para></maml:para>
  1448. </maml:description>
  1449. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  1450. <dev:type>
  1451. <maml:name>IdentityReference2</maml:name>
  1452. <maml:uri/>
  1453. </dev:type>
  1454. <dev:defaultValue></dev:defaultValue>
  1455. </command:parameter>
  1456. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1457. <maml:name>ExcludeExplicit</maml:name>
  1458. <maml:description>
  1459. <maml:para></maml:para>
  1460. </maml:description>
  1461. <dev:type>
  1462. <maml:name>SwitchParameter</maml:name>
  1463. <maml:uri/>
  1464. </dev:type>
  1465. <dev:defaultValue></dev:defaultValue>
  1466. </command:parameter>
  1467. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1468. <maml:name>ExcludeInherited</maml:name>
  1469. <maml:description>
  1470. <maml:para></maml:para>
  1471. </maml:description>
  1472. <dev:type>
  1473. <maml:name>SwitchParameter</maml:name>
  1474. <maml:uri/>
  1475. </dev:type>
  1476. <dev:defaultValue></dev:defaultValue>
  1477. </command:parameter>
  1478. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1479. <maml:name>Path</maml:name>
  1480. <maml:description>
  1481. <maml:para></maml:para>
  1482. </maml:description>
  1483. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1484. <dev:type>
  1485. <maml:name>String[]</maml:name>
  1486. <maml:uri/>
  1487. </dev:type>
  1488. <dev:defaultValue></dev:defaultValue>
  1489. </command:parameter>
  1490. </command:parameters>
  1491. <command:inputTypes>
  1492. <command:inputType>
  1493. <dev:type>
  1494. <maml:name></maml:name>
  1495. <maml:uri/>
  1496. <maml:description>
  1497. <maml:para></maml:para>
  1498. </maml:description>
  1499. </dev:type>
  1500. <maml:description></maml:description>
  1501. </command:inputType>
  1502. </command:inputTypes>
  1503. <command:returnValues>
  1504. <command:returnValue>
  1505. <dev:type>
  1506. <maml:name></maml:name>
  1507. <maml:uri />
  1508. <maml:description>
  1509. <maml:para></maml:para>
  1510. </maml:description>
  1511. </dev:type>
  1512. <maml:description></maml:description>
  1513. </command:returnValue>
  1514. </command:returnValues>
  1515. <command:terminatingErrors>
  1516. </command:terminatingErrors>
  1517. <command:nonTerminatingErrors>
  1518. </command:nonTerminatingErrors>
  1519. <maml:alertSet>
  1520. <maml:title></maml:title>
  1521. <maml:alert>
  1522. <maml:para></maml:para>
  1523. </maml:alert>
  1524. </maml:alertSet>
  1525. <command:examples>
  1526. </command:examples>
  1527. <maml:relatedLinks>
  1528. </maml:relatedLinks>
  1529. </command:command>
  1530. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1531. <!--Generated by Help Cmdlet Editor-->
  1532. <command:details>
  1533. <command:name>Get-SimpleEffectiveAccess</command:name>
  1534. <maml:description>
  1535. <maml:para></maml:para>
  1536. </maml:description>
  1537. <maml:copyright>
  1538. <maml:para />
  1539. <!--Add copy right info here.-->
  1540. </maml:copyright>
  1541. <command:verb>Get</command:verb>
  1542. <command:noun>SimpleEffectiveAccess</command:noun>
  1543. <!--Add Dev version info here.-->
  1544. <dev:version />
  1545. </command:details>
  1546. <maml:description>
  1547. <!--This is the Description section-->
  1548. <maml:para></maml:para>
  1549. </maml:description>
  1550. <command:syntax> <command:syntaxItem>
  1551. <maml:name>Get-SimpleEffectiveAccess</maml:name>
  1552. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1553. <maml:name>IncludeRootFolder</maml:name>
  1554. <maml:description>
  1555. <maml:para></maml:para>
  1556. </maml:description>
  1557. </command:parameter>
  1558. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1559. <maml:name>Account</maml:name>
  1560. <maml:description>
  1561. <maml:para></maml:para>
  1562. </maml:description>
  1563. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  1564. </command:parameter>
  1565. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1566. <maml:name>Path</maml:name>
  1567. <maml:description>
  1568. <maml:para></maml:para>
  1569. </maml:description>
  1570. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1571. </command:parameter>
  1572. </command:syntaxItem>
  1573. </command:syntax>
  1574. <command:parameters>
  1575. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1576. <maml:name>IncludeRootFolder</maml:name>
  1577. <maml:description>
  1578. <maml:para></maml:para>
  1579. </maml:description>
  1580. <dev:type>
  1581. <maml:name>SwitchParameter</maml:name>
  1582. <maml:uri/>
  1583. </dev:type>
  1584. <dev:defaultValue></dev:defaultValue>
  1585. </command:parameter>
  1586. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1587. <maml:name>Account</maml:name>
  1588. <maml:description>
  1589. <maml:para></maml:para>
  1590. </maml:description>
  1591. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  1592. <dev:type>
  1593. <maml:name>IdentityReference2</maml:name>
  1594. <maml:uri/>
  1595. </dev:type>
  1596. <dev:defaultValue></dev:defaultValue>
  1597. </command:parameter>
  1598. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1599. <maml:name>Path</maml:name>
  1600. <maml:description>
  1601. <maml:para></maml:para>
  1602. </maml:description>
  1603. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1604. <dev:type>
  1605. <maml:name>String[]</maml:name>
  1606. <maml:uri/>
  1607. </dev:type>
  1608. <dev:defaultValue></dev:defaultValue>
  1609. </command:parameter>
  1610. </command:parameters>
  1611. <command:inputTypes>
  1612. <command:inputType>
  1613. <dev:type>
  1614. <maml:name></maml:name>
  1615. <maml:uri/>
  1616. <maml:description>
  1617. <maml:para></maml:para>
  1618. </maml:description>
  1619. </dev:type>
  1620. <maml:description></maml:description>
  1621. </command:inputType>
  1622. </command:inputTypes>
  1623. <command:returnValues>
  1624. <command:returnValue>
  1625. <dev:type>
  1626. <maml:name></maml:name>
  1627. <maml:uri />
  1628. <maml:description>
  1629. <maml:para></maml:para>
  1630. </maml:description>
  1631. </dev:type>
  1632. <maml:description></maml:description>
  1633. </command:returnValue>
  1634. </command:returnValues>
  1635. <command:terminatingErrors>
  1636. </command:terminatingErrors>
  1637. <command:nonTerminatingErrors>
  1638. </command:nonTerminatingErrors>
  1639. <maml:alertSet>
  1640. <maml:title></maml:title>
  1641. <maml:alert>
  1642. <maml:para></maml:para>
  1643. </maml:alert>
  1644. </maml:alertSet>
  1645. <command:examples>
  1646. </command:examples>
  1647. <maml:relatedLinks>
  1648. </maml:relatedLinks>
  1649. </command:command>
  1650. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1651. <!--Generated by Help Cmdlet Editor-->
  1652. <command:details>
  1653. <command:name>Remove-Access</command:name>
  1654. <maml:description>
  1655. <maml:para></maml:para>
  1656. </maml:description>
  1657. <maml:copyright>
  1658. <maml:para />
  1659. <!--Add copy right info here.-->
  1660. </maml:copyright>
  1661. <command:verb>Remove</command:verb>
  1662. <command:noun>Access</command:noun>
  1663. <!--Add Dev version info here.-->
  1664. <dev:version />
  1665. </command:details>
  1666. <maml:description>
  1667. <!--This is the Description section-->
  1668. <maml:para></maml:para>
  1669. </maml:description>
  1670. <command:syntax> <command:syntaxItem>
  1671. <maml:name>Remove-Access</maml:name>
  1672. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
  1673. <maml:name>Account</maml:name>
  1674. <maml:description>
  1675. <maml:para></maml:para>
  1676. </maml:description>
  1677. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  1678. </command:parameter>
  1679. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
  1680. <maml:name>AccessRights</maml:name>
  1681. <maml:description>
  1682. <maml:para></maml:para>
  1683. </maml:description>
  1684. <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
  1685. </command:parameter>
  1686. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  1687. <maml:name>AccessType</maml:name>
  1688. <maml:description>
  1689. <maml:para></maml:para>
  1690. </maml:description>
  1691. <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
  1692. </command:parameter>
  1693. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  1694. <maml:name>InheritanceFlags</maml:name>
  1695. <maml:description>
  1696. <maml:para></maml:para>
  1697. </maml:description>
  1698. <command:parameterValue required="true" variableLength = "false" >InheritanceFlags</command:parameterValue>
  1699. </command:parameter>
  1700. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  1701. <maml:name>PropagationFlags</maml:name>
  1702. <maml:description>
  1703. <maml:para></maml:para>
  1704. </maml:description>
  1705. <command:parameterValue required="true" variableLength = "false" >PropagationFlags</command:parameterValue>
  1706. </command:parameter>
  1707. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1708. <maml:name>PassThru</maml:name>
  1709. <maml:description>
  1710. <maml:para></maml:para>
  1711. </maml:description>
  1712. </command:parameter>
  1713. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1714. <maml:name>Path</maml:name>
  1715. <maml:description>
  1716. <maml:para></maml:para>
  1717. </maml:description>
  1718. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1719. </command:parameter>
  1720. </command:syntaxItem>
  1721. <command:syntaxItem>
  1722. <maml:name>Remove-Access</maml:name>
  1723. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
  1724. <maml:name>Account</maml:name>
  1725. <maml:description>
  1726. <maml:para></maml:para>
  1727. </maml:description>
  1728. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  1729. </command:parameter>
  1730. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
  1731. <maml:name>AccessRights</maml:name>
  1732. <maml:description>
  1733. <maml:para></maml:para>
  1734. </maml:description>
  1735. <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
  1736. </command:parameter>
  1737. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  1738. <maml:name>AccessType</maml:name>
  1739. <maml:description>
  1740. <maml:para></maml:para>
  1741. </maml:description>
  1742. <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
  1743. </command:parameter>
  1744. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
  1745. <maml:name>AppliesTo</maml:name>
  1746. <maml:description>
  1747. <maml:para></maml:para>
  1748. </maml:description>
  1749. <command:parameterValue required="true" variableLength = "false" >ApplyTo</command:parameterValue>
  1750. </command:parameter>
  1751. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1752. <maml:name>PassThru</maml:name>
  1753. <maml:description>
  1754. <maml:para></maml:para>
  1755. </maml:description>
  1756. </command:parameter>
  1757. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1758. <maml:name>Path</maml:name>
  1759. <maml:description>
  1760. <maml:para></maml:para>
  1761. </maml:description>
  1762. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1763. </command:parameter>
  1764. </command:syntaxItem>
  1765. </command:syntax>
  1766. <command:parameters>
  1767. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1">
  1768. <maml:name>Account</maml:name>
  1769. <maml:description>
  1770. <maml:para></maml:para>
  1771. </maml:description>
  1772. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  1773. <dev:type>
  1774. <maml:name>IdentityReference2</maml:name>
  1775. <maml:uri/>
  1776. </dev:type>
  1777. <dev:defaultValue></dev:defaultValue>
  1778. </command:parameter>
  1779. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
  1780. <maml:name>AccessRights</maml:name>
  1781. <maml:description>
  1782. <maml:para></maml:para>
  1783. </maml:description>
  1784. <command:parameterValue required="true" variableLength="false">FileSystemRights</command:parameterValue>
  1785. <dev:type>
  1786. <maml:name>FileSystemRights</maml:name>
  1787. <maml:uri/>
  1788. </dev:type>
  1789. <dev:defaultValue></dev:defaultValue>
  1790. </command:parameter>
  1791. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  1792. <maml:name>AccessType</maml:name>
  1793. <maml:description>
  1794. <maml:para></maml:para>
  1795. </maml:description>
  1796. <command:parameterValue required="true" variableLength="false">AccessControlType</command:parameterValue>
  1797. <dev:type>
  1798. <maml:name>AccessControlType</maml:name>
  1799. <maml:uri/>
  1800. </dev:type>
  1801. <dev:defaultValue></dev:defaultValue>
  1802. </command:parameter>
  1803. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  1804. <maml:name>InheritanceFlags</maml:name>
  1805. <maml:description>
  1806. <maml:para></maml:para>
  1807. </maml:description>
  1808. <command:parameterValue required="true" variableLength="false">InheritanceFlags</command:parameterValue>
  1809. <dev:type>
  1810. <maml:name>InheritanceFlags</maml:name>
  1811. <maml:uri/>
  1812. </dev:type>
  1813. <dev:defaultValue></dev:defaultValue>
  1814. </command:parameter>
  1815. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  1816. <maml:name>PropagationFlags</maml:name>
  1817. <maml:description>
  1818. <maml:para></maml:para>
  1819. </maml:description>
  1820. <command:parameterValue required="true" variableLength="false">PropagationFlags</command:parameterValue>
  1821. <dev:type>
  1822. <maml:name>PropagationFlags</maml:name>
  1823. <maml:uri/>
  1824. </dev:type>
  1825. <dev:defaultValue></dev:defaultValue>
  1826. </command:parameter>
  1827. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1828. <maml:name>PassThru</maml:name>
  1829. <maml:description>
  1830. <maml:para></maml:para>
  1831. </maml:description>
  1832. <dev:type>
  1833. <maml:name>SwitchParameter</maml:name>
  1834. <maml:uri/>
  1835. </dev:type>
  1836. <dev:defaultValue></dev:defaultValue>
  1837. </command:parameter>
  1838. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1839. <maml:name>Path</maml:name>
  1840. <maml:description>
  1841. <maml:para></maml:para>
  1842. </maml:description>
  1843. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1844. <dev:type>
  1845. <maml:name>String[]</maml:name>
  1846. <maml:uri/>
  1847. </dev:type>
  1848. <dev:defaultValue></dev:defaultValue>
  1849. </command:parameter>
  1850. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
  1851. <maml:name>AppliesTo</maml:name>
  1852. <maml:description>
  1853. <maml:para></maml:para>
  1854. </maml:description>
  1855. <command:parameterValue required="true" variableLength="false">ApplyTo</command:parameterValue>
  1856. <dev:type>
  1857. <maml:name>ApplyTo</maml:name>
  1858. <maml:uri/>
  1859. </dev:type>
  1860. <dev:defaultValue></dev:defaultValue>
  1861. </command:parameter>
  1862. </command:parameters>
  1863. <command:inputTypes>
  1864. <command:inputType>
  1865. <dev:type>
  1866. <maml:name></maml:name>
  1867. <maml:uri/>
  1868. <maml:description>
  1869. <maml:para></maml:para>
  1870. </maml:description>
  1871. </dev:type>
  1872. <maml:description></maml:description>
  1873. </command:inputType>
  1874. </command:inputTypes>
  1875. <command:returnValues>
  1876. <command:returnValue>
  1877. <dev:type>
  1878. <maml:name></maml:name>
  1879. <maml:uri />
  1880. <maml:description>
  1881. <maml:para></maml:para>
  1882. </maml:description>
  1883. </dev:type>
  1884. <maml:description></maml:description>
  1885. </command:returnValue>
  1886. </command:returnValues>
  1887. <command:terminatingErrors>
  1888. </command:terminatingErrors>
  1889. <command:nonTerminatingErrors>
  1890. </command:nonTerminatingErrors>
  1891. <maml:alertSet>
  1892. <maml:title></maml:title>
  1893. <maml:alert>
  1894. <maml:para></maml:para>
  1895. </maml:alert>
  1896. </maml:alertSet>
  1897. <command:examples>
  1898. </command:examples>
  1899. <maml:relatedLinks>
  1900. </maml:relatedLinks>
  1901. </command:command>
  1902. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  1903. <!--Generated by Help Cmdlet Editor-->
  1904. <command:details>
  1905. <command:name>Set-Owner</command:name>
  1906. <maml:description>
  1907. <maml:para></maml:para>
  1908. </maml:description>
  1909. <maml:copyright>
  1910. <maml:para />
  1911. <!--Add copy right info here.-->
  1912. </maml:copyright>
  1913. <command:verb>Set</command:verb>
  1914. <command:noun>Owner</command:noun>
  1915. <!--Add Dev version info here.-->
  1916. <dev:version />
  1917. </command:details>
  1918. <maml:description>
  1919. <!--This is the Description section-->
  1920. <maml:para></maml:para>
  1921. </maml:description>
  1922. <command:syntax> <command:syntaxItem>
  1923. <maml:name>Set-Owner</maml:name>
  1924. <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
  1925. <maml:name>Account</maml:name>
  1926. <maml:description>
  1927. <maml:para></maml:para>
  1928. </maml:description>
  1929. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  1930. </command:parameter>
  1931. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1932. <maml:name>PassThru</maml:name>
  1933. <maml:description>
  1934. <maml:para></maml:para>
  1935. </maml:description>
  1936. </command:parameter>
  1937. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  1938. <maml:name>Recurse</maml:name>
  1939. <maml:description>
  1940. <maml:para></maml:para>
  1941. </maml:description>
  1942. </command:parameter>
  1943. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  1944. <maml:name>Path</maml:name>
  1945. <maml:description>
  1946. <maml:para></maml:para>
  1947. </maml:description>
  1948. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  1949. </command:parameter>
  1950. </command:syntaxItem>
  1951. </command:syntax>
  1952. <command:parameters>
  1953. <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
  1954. <maml:name>Account</maml:name>
  1955. <maml:description>
  1956. <maml:para></maml:para>
  1957. </maml:description>
  1958. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  1959. <dev:type>
  1960. <maml:name>IdentityReference2</maml:name>
  1961. <maml:uri/>
  1962. </dev:type>
  1963. <dev:defaultValue></dev:defaultValue>
  1964. </command:parameter>
  1965. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1966. <maml:name>PassThru</maml:name>
  1967. <maml:description>
  1968. <maml:para></maml:para>
  1969. </maml:description>
  1970. <dev:type>
  1971. <maml:name>SwitchParameter</maml:name>
  1972. <maml:uri/>
  1973. </dev:type>
  1974. <dev:defaultValue></dev:defaultValue>
  1975. </command:parameter>
  1976. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  1977. <maml:name>Recurse</maml:name>
  1978. <maml:description>
  1979. <maml:para></maml:para>
  1980. </maml:description>
  1981. <dev:type>
  1982. <maml:name>SwitchParameter</maml:name>
  1983. <maml:uri/>
  1984. </dev:type>
  1985. <dev:defaultValue></dev:defaultValue>
  1986. </command:parameter>
  1987. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  1988. <maml:name>Path</maml:name>
  1989. <maml:description>
  1990. <maml:para></maml:para>
  1991. </maml:description>
  1992. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  1993. <dev:type>
  1994. <maml:name>String[]</maml:name>
  1995. <maml:uri/>
  1996. </dev:type>
  1997. <dev:defaultValue></dev:defaultValue>
  1998. </command:parameter>
  1999. </command:parameters>
  2000. <command:inputTypes>
  2001. <command:inputType>
  2002. <dev:type>
  2003. <maml:name></maml:name>
  2004. <maml:uri/>
  2005. <maml:description>
  2006. <maml:para></maml:para>
  2007. </maml:description>
  2008. </dev:type>
  2009. <maml:description></maml:description>
  2010. </command:inputType>
  2011. </command:inputTypes>
  2012. <command:returnValues>
  2013. <command:returnValue>
  2014. <dev:type>
  2015. <maml:name></maml:name>
  2016. <maml:uri />
  2017. <maml:description>
  2018. <maml:para></maml:para>
  2019. </maml:description>
  2020. </dev:type>
  2021. <maml:description></maml:description>
  2022. </command:returnValue>
  2023. </command:returnValues>
  2024. <command:terminatingErrors>
  2025. </command:terminatingErrors>
  2026. <command:nonTerminatingErrors>
  2027. </command:nonTerminatingErrors>
  2028. <maml:alertSet>
  2029. <maml:title></maml:title>
  2030. <maml:alert>
  2031. <maml:para></maml:para>
  2032. </maml:alert>
  2033. </maml:alertSet>
  2034. <command:examples>
  2035. </command:examples>
  2036. <maml:relatedLinks>
  2037. </maml:relatedLinks>
  2038. </command:command>
  2039. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  2040. <!--Generated by Help Cmdlet Editor-->
  2041. <command:details>
  2042. <command:name>Show-SimpleAccess</command:name>
  2043. <maml:description>
  2044. <maml:para></maml:para>
  2045. </maml:description>
  2046. <maml:copyright>
  2047. <maml:para />
  2048. <!--Add copy right info here.-->
  2049. </maml:copyright>
  2050. <command:verb>Show</command:verb>
  2051. <command:noun>SimpleAccess</command:noun>
  2052. <!--Add Dev version info here.-->
  2053. <dev:version />
  2054. </command:details>
  2055. <maml:description>
  2056. <!--This is the Description section-->
  2057. <maml:para></maml:para>
  2058. </maml:description>
  2059. <command:syntax> <command:syntaxItem>
  2060. <maml:name>Show-SimpleAccess</maml:name>
  2061. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  2062. <maml:name>IncludeRootFolder</maml:name>
  2063. <maml:description>
  2064. <maml:para></maml:para>
  2065. </maml:description>
  2066. </command:parameter>
  2067. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  2068. <maml:name>Account</maml:name>
  2069. <maml:description>
  2070. <maml:para></maml:para>
  2071. </maml:description>
  2072. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  2073. </command:parameter>
  2074. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  2075. <maml:name>ExcludeExplicit</maml:name>
  2076. <maml:description>
  2077. <maml:para></maml:para>
  2078. </maml:description>
  2079. </command:parameter>
  2080. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  2081. <maml:name>ExcludeInherited</maml:name>
  2082. <maml:description>
  2083. <maml:para></maml:para>
  2084. </maml:description>
  2085. </command:parameter>
  2086. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  2087. <maml:name>Path</maml:name>
  2088. <maml:description>
  2089. <maml:para></maml:para>
  2090. </maml:description>
  2091. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  2092. </command:parameter>
  2093. </command:syntaxItem>
  2094. </command:syntax>
  2095. <command:parameters>
  2096. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  2097. <maml:name>IncludeRootFolder</maml:name>
  2098. <maml:description>
  2099. <maml:para></maml:para>
  2100. </maml:description>
  2101. <dev:type>
  2102. <maml:name>SwitchParameter</maml:name>
  2103. <maml:uri/>
  2104. </dev:type>
  2105. <dev:defaultValue></dev:defaultValue>
  2106. </command:parameter>
  2107. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  2108. <maml:name>Account</maml:name>
  2109. <maml:description>
  2110. <maml:para></maml:para>
  2111. </maml:description>
  2112. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  2113. <dev:type>
  2114. <maml:name>IdentityReference2</maml:name>
  2115. <maml:uri/>
  2116. </dev:type>
  2117. <dev:defaultValue></dev:defaultValue>
  2118. </command:parameter>
  2119. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  2120. <maml:name>ExcludeExplicit</maml:name>
  2121. <maml:description>
  2122. <maml:para></maml:para>
  2123. </maml:description>
  2124. <dev:type>
  2125. <maml:name>SwitchParameter</maml:name>
  2126. <maml:uri/>
  2127. </dev:type>
  2128. <dev:defaultValue></dev:defaultValue>
  2129. </command:parameter>
  2130. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  2131. <maml:name>ExcludeInherited</maml:name>
  2132. <maml:description>
  2133. <maml:para></maml:para>
  2134. </maml:description>
  2135. <dev:type>
  2136. <maml:name>SwitchParameter</maml:name>
  2137. <maml:uri/>
  2138. </dev:type>
  2139. <dev:defaultValue></dev:defaultValue>
  2140. </command:parameter>
  2141. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  2142. <maml:name>Path</maml:name>
  2143. <maml:description>
  2144. <maml:para></maml:para>
  2145. </maml:description>
  2146. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  2147. <dev:type>
  2148. <maml:name>String[]</maml:name>
  2149. <maml:uri/>
  2150. </dev:type>
  2151. <dev:defaultValue></dev:defaultValue>
  2152. </command:parameter>
  2153. </command:parameters>
  2154. <command:inputTypes>
  2155. <command:inputType>
  2156. <dev:type>
  2157. <maml:name></maml:name>
  2158. <maml:uri/>
  2159. <maml:description>
  2160. <maml:para></maml:para>
  2161. </maml:description>
  2162. </dev:type>
  2163. <maml:description></maml:description>
  2164. </command:inputType>
  2165. </command:inputTypes>
  2166. <command:returnValues>
  2167. <command:returnValue>
  2168. <dev:type>
  2169. <maml:name></maml:name>
  2170. <maml:uri />
  2171. <maml:description>
  2172. <maml:para></maml:para>
  2173. </maml:description>
  2174. </dev:type>
  2175. <maml:description></maml:description>
  2176. </command:returnValue>
  2177. </command:returnValues>
  2178. <command:terminatingErrors>
  2179. </command:terminatingErrors>
  2180. <command:nonTerminatingErrors>
  2181. </command:nonTerminatingErrors>
  2182. <maml:alertSet>
  2183. <maml:title></maml:title>
  2184. <maml:alert>
  2185. <maml:para></maml:para>
  2186. </maml:alert>
  2187. </maml:alertSet>
  2188. <command:examples>
  2189. </command:examples>
  2190. <maml:relatedLinks>
  2191. </maml:relatedLinks>
  2192. </command:command>
  2193. <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10">
  2194. <!--Generated by Help Cmdlet Editor-->
  2195. <command:details>
  2196. <command:name>Show-SimpleEffectiveAccess</command:name>
  2197. <maml:description>
  2198. <maml:para></maml:para>
  2199. </maml:description>
  2200. <maml:copyright>
  2201. <maml:para />
  2202. <!--Add copy right info here.-->
  2203. </maml:copyright>
  2204. <command:verb>Show</command:verb>
  2205. <command:noun>SimpleEffectiveAccess</command:noun>
  2206. <!--Add Dev version info here.-->
  2207. <dev:version />
  2208. </command:details>
  2209. <maml:description>
  2210. <!--This is the Description section-->
  2211. <maml:para></maml:para>
  2212. </maml:description>
  2213. <command:syntax> <command:syntaxItem>
  2214. <maml:name>Show-SimpleEffectiveAccess</maml:name>
  2215. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
  2216. <maml:name>IncludeRootFolder</maml:name>
  2217. <maml:description>
  2218. <maml:para></maml:para>
  2219. </maml:description>
  2220. </command:parameter>
  2221. <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  2222. <maml:name>Account</maml:name>
  2223. <maml:description>
  2224. <maml:para></maml:para>
  2225. </maml:description>
  2226. <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
  2227. </command:parameter>
  2228. <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
  2229. <maml:name>Path</maml:name>
  2230. <maml:description>
  2231. <maml:para></maml:para>
  2232. </maml:description>
  2233. <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
  2234. </command:parameter>
  2235. </command:syntaxItem>
  2236. </command:syntax>
  2237. <command:parameters>
  2238. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
  2239. <maml:name>IncludeRootFolder</maml:name>
  2240. <maml:description>
  2241. <maml:para></maml:para>
  2242. </maml:description>
  2243. <dev:type>
  2244. <maml:name>SwitchParameter</maml:name>
  2245. <maml:uri/>
  2246. </dev:type>
  2247. <dev:defaultValue></dev:defaultValue>
  2248. </command:parameter>
  2249. <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  2250. <maml:name>Account</maml:name>
  2251. <maml:description>
  2252. <maml:para></maml:para>
  2253. </maml:description>
  2254. <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
  2255. <dev:type>
  2256. <maml:name>IdentityReference2</maml:name>
  2257. <maml:uri/>
  2258. </dev:type>
  2259. <dev:defaultValue></dev:defaultValue>
  2260. </command:parameter>
  2261. <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
  2262. <maml:name>Path</maml:name>
  2263. <maml:description>
  2264. <maml:para></maml:para>
  2265. </maml:description>
  2266. <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
  2267. <dev:type>
  2268. <maml:name>String[]</maml:name>
  2269. <maml:uri/>
  2270. </dev:type>
  2271. <dev:defaultValue></dev:defaultValue>
  2272. </command:parameter>
  2273. </command:parameters>
  2274. <command:inputTypes>
  2275. <command:inputType>
  2276. <dev:type>
  2277. <maml:name></maml:name>
  2278. <maml:uri/>
  2279. <maml:description>
  2280. <maml:para></maml:para>
  2281. </maml:description>
  2282. </dev:type>
  2283. <maml:description></maml:description>
  2284. </command:inputType>
  2285. </command:inputTypes>
  2286. <command:returnValues>
  2287. <command:returnValue>
  2288. <dev:type>
  2289. <maml:name></maml:name>
  2290. <maml:uri />
  2291. <maml:description>
  2292. <maml:para></maml:para>
  2293. </maml:description>
  2294. </dev:type>
  2295. <maml:description></maml:description>
  2296. </command:returnValue>
  2297. </command:returnValues>
  2298. <command:terminatingErrors>
  2299. </command:terminatingErrors>
  2300. <command:nonTerminatingErrors>
  2301. </command:nonTerminatingErrors>
  2302. <maml:alertSet>
  2303. <maml:title></maml:title>
  2304. <maml:alert>
  2305. <maml:para></maml:para>
  2306. </maml:alert>
  2307. </maml:alertSet>
  2308. <command:examples>
  2309. </command:examples>
  2310. <maml:relatedLinks>
  2311. </maml:relatedLinks>
  2312. </command:command>
  2313. </helpItems>