NTFSSecurity-Help.xml

<?xml version="1.0" encoding="utf-8"?>
 
<helpItems xmlns="http://msh" schema="maml">
 
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Add-Access</command:name>
        <maml:description>
            <maml:para>Add permission to the ACL of a file or folder.</maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Add</command:verb>
        <command:noun>Access</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para>The function adds an ACE to the item's ACL. The cmdlet needs to have the following information for that:
  - Path
  - Account (SamAccountName or SID)
  - AccessRights (Read, Change, FullControl, etc., ...)
  - AccessType (Allow or Deny)
  - ApplyTo (This folder only, Only files, etc.)
   
All the options are explained in the parameter section.
   
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>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Add-Access</maml:name>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
                <maml:name>AccessRights</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AccessType</maml:name>
                <maml:description>
                    <maml:para>The type of access you want to give, either Allow or Deny (System.Security.AccessControl.AccessControlType).</maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>InheritanceFlags</maml:name>
                <maml:description>
                    <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)
   
There are three options:
- None: The permission will not be inherited by any child item
- ContainerInherit: The permission will be inherited only by directories
- ObjectInherit: The permission will be inherited only by files</maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >InheritanceFlags</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>PropagationFlags</maml:name>
                <maml:description>
                    <maml:para>Specifies how Access Control Entries (ACEs) are propagated to child objects.
 
There are three options:
- None: Specifies that no propagation flags are set.
- NoPropagateInherit: Specifies that the ACE is not propagated to child objects.
- InheritOnly: Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects.</maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >PropagationFlags</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
        <command:syntaxItem>
            <maml:name>Add-Access</maml:name>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
                <maml:name>AccessRights</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AccessType</maml:name>
                <maml:description>
                    <maml:para>The type of access you want to give, either Allow or Deny (System.Security.AccessControl.AccessControlType).</maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AppliesTo</maml:name>
                <maml:description>
                    <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:
- ThisFolderOnly
- ThisFolderSubfolderAndFiles
- ThisFolderAndSubfolders
- ThisFolderAndFiles
- SubfolderAndFilesOnly
- SubfolersOnly
- FilesOnly</maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >ApplyTo</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1">
            <maml:name>Account</maml:name>
            <maml:description>
                <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>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
            <maml:name>AccessRights</maml:name>
            <maml:description>
                <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>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">FileSystemRights</command:parameterValue>
            <dev:type>
                <maml:name>FileSystemRights</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>AccessType</maml:name>
            <maml:description>
                <maml:para>The type of access you want to give, either Allow or Deny (System.Security.AccessControl.AccessControlType).</maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">AccessControlType</command:parameterValue>
            <dev:type>
                <maml:name>AccessControlType</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>InheritanceFlags</maml:name>
            <maml:description>
                <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)
   
There are three options:
- None: The permission will not be inherited by any child item
- ContainerInherit: The permission will be inherited only by directories
- ObjectInherit: The permission will be inherited only by files</maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">InheritanceFlags</command:parameterValue>
            <dev:type>
                <maml:name>InheritanceFlags</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>PropagationFlags</maml:name>
            <maml:description>
                <maml:para>Specifies how Access Control Entries (ACEs) are propagated to child objects.
 
There are three options:
- None: Specifies that no propagation flags are set.
- NoPropagateInherit: Specifies that the ACE is not propagated to child objects.
- InheritOnly: Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects.</maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">PropagationFlags</command:parameterValue>
            <dev:type>
                <maml:name>PropagationFlags</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PassThru</maml:name>
            <maml:description>
                <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>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <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>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>AppliesTo</maml:name>
            <maml:description>
                <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:
- ThisFolderOnly
- ThisFolderSubfolderAndFiles
- ThisFolderAndSubfolders
- ThisFolderAndFiles
- SubfolderAndFilesOnly
- SubfolersOnly
- FilesOnly</maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">ApplyTo</command:parameterValue>
            <dev:type>
                <maml:name>ApplyTo</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name>FileSystemInfo or Strings</maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para>All parameters accept pipeline input.</maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name>Null, unless the parameter PassThru is used.</maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para>Security2.FileSystemAccessRule2 for each ACE on the object, if PassThru is used.</maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
        <command:example>
            <maml:title>
-------------- EXAMPLE 1 -------------- </maml:title>
            <maml:introduction>
                <maml:para>C:\PS&gt;</maml:para>
C:\PS&gt; </maml:introduction>
              <dev:code>PS C:\&gt; dir | Add-Ace -Account forest3\test -AccessRights Read -PassThru</dev:code>
              <dev:remarks>
                <maml:para>Add read permissions to the test user account. Per default the inheritance is set to files and folders.</maml:para>
                <maml:para></maml:para>
                <maml:para></maml:para>
                <maml:para>Path: C:\data\Test (Inheritance enabled)
 
        Identity Rights Inheritance Type IsInherited
        -------- ------ ----------- ---- -----------
        raandree1\Test (S-1-5-21-30... FullControl ContainerInherit,... Allow False
                </maml:para>
                <maml:para></maml:para>
              </dev:remarks>
            <command:commandLines>
                <command:commandLine>
                    <command:commandText>
                    </command:commandText>
                </command:commandLine>
            </command:commandLines>
        </command:example>
        <command:example>
            <maml:title>
-------------- EXAMPLE 2 -------------- </maml:title>
            <maml:introduction>
                <maml:para>C:\PS&gt;</maml:para>
C:\PS&gt; </maml:introduction>
              <dev:code>PS C:\data&gt; dir | Add-Ace -Account raandree1\test -AccessRights Read -AppliesTo ThisFolderOnly -PassThru</dev:code>
              <dev:remarks>
                <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>
                <maml:para></maml:para>
                <maml:para></maml:para>
                <maml:para>Path: C:\data\Test (Inheritance enabled)
 
        Identity Rights Inheritance Type IsInherited
        -------- ------ ----------- ---- -----------
        raandree1\Test (S-1-5-21-30... Read, Synchronize None Allow False
 
            Path: C:\data\File1.txt (Inheritance enabled)
 
        Identity Rights Inheritance Type IsInherited
        -------- ------ ----------- ---- -----------
        raandree1\Test (S-1-5-21-30... Read, Synchronize None Allow False
                </maml:para>
                <maml:para></maml:para>
              </dev:remarks>
            <command:commandLines>
                <command:commandLine>
                    <command:commandText>
                    </command:commandText>
                </command:commandLine>
            </command:commandLines>
        </command:example>
    </command:examples>
    <maml:relatedLinks>
        <maml:navigationLink>
            <maml:linkText>http://gallery.technet.microsoft.com/scriptcenter/1abd77a5-9c0b-4a2b-acef-90dbb2b84e85</maml:linkText>
            <maml:uri/>
        </maml:navigationLink>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Copy-Access</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Copy</command:verb>
        <command:noun>Access</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Copy-Access</maml:name>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >String</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
                <maml:name>DestinationPath</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >String</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "3" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AccessType</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
            <dev:type>
                <maml:name>String</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
            <maml:name>DestinationPath</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
            <dev:type>
                <maml:name>String</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="3">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>AccessType</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">AccessControlType</command:parameterValue>
            <dev:type>
                <maml:name>AccessControlType</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PassThru</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Disable-Inheritance</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Disable</command:verb>
        <command:noun>Inheritance</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Disable-Inheritance</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PreserveInheritedAccessRules</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PassThru</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PreserveInheritedAccessRules</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Enable-Inheritance</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Enable</command:verb>
        <command:noun>Inheritance</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Enable-Inheritance</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>RemoveInheritedAccessRules</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PassThru</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>RemoveInheritedAccessRules</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-Access</command:name>
        <maml:description>
            <maml:para>Gets all Access Control Entries in the item's Discretionary Access Control List.</maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>Access</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para>The function returns all ACEs defined on the item. You can filter the ACEs using the switches ExcludeExplicit and ExcludeInherited.
   
Whether the item inherits the permissions from its parent is indicated in the output as well.
   
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>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-Access</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para>Takes the account that is used to filter the output. Only ACEs are shown that match the given user account.
 
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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeExplicit</maml:name>
                <maml:description>
                    <maml:para>If set, only inherited ACEs are returned.</maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeInherited</maml:name>
                <maml:description>
                    <maml:para>If set, only explicitly non-inherited ACEs are returned.</maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <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>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para>Takes the account that is used to filter the output. Only ACEs are shown that match the given user account.
 
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>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeExplicit</maml:name>
            <maml:description>
                <maml:para>If set, only inherited ACEs are returned.</maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeInherited</maml:name>
            <maml:description>
                <maml:para>If set, only explicitly non-inherited ACEs are returned.</maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <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>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name>System.String</maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para>You can pipe a string that contains a path.</maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name>Security2.FileSystemAccessRule2</maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para>Get-Ace returns objects that represent the item's Access Control Entries.</maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
        <command:example>
            <maml:title>
-------------- EXAMPLE 1 -------------- </maml:title>
            <maml:introduction>
                <maml:para>C:\PS&gt;</maml:para>
C:\PS&gt; </maml:introduction>
              <dev:code>Get-Item c:\ | Get-Access</dev:code>
              <dev:remarks>
                <maml:para>Get all ACEs defined on the root of drive C:</maml:para>
                <maml:para></maml:para>
                <maml:para></maml:para>
                <maml:para> Path: C:\ (Inheritance disabled)
 
        Identity Rights Inheritance Type IsInherited
        -------- ------ ----------- ---- -----------
        NT AUTHORITY\Authenticated ... AppendData None Allow False
        NT AUTHORITY\Authenticated ... -536805376 ContainerIn... Allow False
        NT AUTHORITY\SYSTEM (S-1-5-18) FullControl None Allow False
        NT AUTHORITY\SYSTEM (S-1-5-18) 268435456 ContainerIn... Allow False
        BUILTIN\Administrators (S-1... 268435456 ContainerIn... Allow False
        BUILTIN\Administrators (S-1... FullControl None Allow False
        BUILTIN\Users (S-1-5-32-545) ReadAndExec... ContainerIn... Allow False
                </maml:para>
                <maml:para></maml:para>
              </dev:remarks>
            <command:commandLines>
                <command:commandLine>
                    <command:commandText>
                    </command:commandText>
                </command:commandLine>
            </command:commandLines>
        </command:example>
        <command:example>
            <maml:title>
-------------- EXAMPLE 2 -------------- </maml:title>
            <maml:introduction>
                <maml:para>C:\PS&gt;</maml:para>
C:\PS&gt; </maml:introduction>
              <dev:code>PS C:\&gt; dir | Where-Object { $_.PSIsContainer } | Get-Ace -ExcludeInherited</dev:code>
              <dev:remarks>
                <maml:para>This command returns only explicitly set ACEs on all folders.</maml:para>
                <maml:para></maml:para>
                <maml:para></maml:para>
                <maml:para>
                </maml:para>
                <maml:para></maml:para>
              </dev:remarks>
            <command:commandLines>
                <command:commandLine>
                    <command:commandText>
                    </command:commandText>
                </command:commandLine>
            </command:commandLines>
        </command:example>
        <command:example>
            <maml:title>
-------------- EXMAPLE 3 -------------- </maml:title>
            <maml:introduction>
                <maml:para>C:\PS&gt;</maml:para>
C:\PS&gt; </maml:introduction>
              <dev:code>PS C:\&gt; dir | Get-Access -Account Builtin\Users</dev:code>
              <dev:remarks>
                <maml:para>This command returns all Access Control Entries whose account match 'Builtin\Users'.</maml:para>
                <maml:para></maml:para>
                <maml:para></maml:para>
                <maml:para> Path: C:\Users\raandree\Desktop\ADRAP.docx (Inheritance disabled)
 
 
Account Access Rights Applies to Type IsInherited
------- ------------- ---------- ---- -----------
BUILTIN\Users (S-1-5-32-545) Modify, Synch... ThisFolderOnly Allow False
                </maml:para>
                <maml:para></maml:para>
              </dev:remarks>
            <command:commandLines>
                <command:commandLine>
                    <command:commandText>
                    </command:commandText>
                </command:commandLine>
            </command:commandLines>
        </command:example>
    </command:examples>
    <maml:relatedLinks>
        <maml:navigationLink>
            <maml:linkText>http://gallery.technet.microsoft.com/scriptcenter/1abd77a5-9c0b-4a2b-acef-90dbb2b84e85</maml:linkText>
            <maml:uri/>
        </maml:navigationLink>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-EffectiveAccess</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>EffectiveAccess</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-EffectiveAccess</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-Inheritance</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>Inheritance</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-Inheritance</maml:name>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-OrphanedAccess</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>OrphanedAccess</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-OrphanedAccess</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeExplicit</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeInherited</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeExplicit</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeInherited</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-Owner</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>Owner</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-Owner</maml:name>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-SimpleAccess</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>SimpleAccess</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-SimpleAccess</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>IncludeRootFolder</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeExplicit</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeInherited</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>IncludeRootFolder</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeExplicit</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeInherited</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Get-SimpleEffectiveAccess</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Get</command:verb>
        <command:noun>SimpleEffectiveAccess</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Get-SimpleEffectiveAccess</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>IncludeRootFolder</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>IncludeRootFolder</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Remove-Access</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Remove</command:verb>
        <command:noun>Access</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Remove-Access</maml:name>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
                <maml:name>AccessRights</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AccessType</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>InheritanceFlags</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >InheritanceFlags</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>PropagationFlags</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >PropagationFlags</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
        <command:syntaxItem>
            <maml:name>Remove-Access</maml:name>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
                <maml:name>AccessRights</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >FileSystemRights</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AccessType</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >AccessControlType</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "named" >
                <maml:name>AppliesTo</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >ApplyTo</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
            <maml:name>AccessRights</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">FileSystemRights</command:parameterValue>
            <dev:type>
                <maml:name>FileSystemRights</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>AccessType</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">AccessControlType</command:parameterValue>
            <dev:type>
                <maml:name>AccessControlType</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>InheritanceFlags</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">InheritanceFlags</command:parameterValue>
            <dev:type>
                <maml:name>InheritanceFlags</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>PropagationFlags</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">PropagationFlags</command:parameterValue>
            <dev:type>
                <maml:name>PropagationFlags</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PassThru</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
            <maml:name>AppliesTo</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">ApplyTo</command:parameterValue>
            <dev:type>
                <maml:name>ApplyTo</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Set-Owner</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Set</command:verb>
        <command:noun>Owner</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Set-Owner</maml:name>
            <command:parameter required = "true" variableLength = "false" globbing = "false" pipelineInput = "true (ByPropertyName)" position = "2" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>PassThru</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>Recurse</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="true" variableLength="false" globbing="false" pipelineInput="true (ByPropertyName)" position="2">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>PassThru</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>Recurse</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Show-SimpleAccess</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Show</command:verb>
        <command:noun>SimpleAccess</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Show-SimpleAccess</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>IncludeRootFolder</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeExplicit</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>ExcludeInherited</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>IncludeRootFolder</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeExplicit</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>ExcludeInherited</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
<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">
<!--Generated by Help Cmdlet Editor-->
    <command:details>
        <command:name>Show-SimpleEffectiveAccess</command:name>
        <maml:description>
            <maml:para></maml:para>
        </maml:description>
        <maml:copyright>
           <maml:para />
        <!--Add copy right info here.-->
        </maml:copyright>
        <command:verb>Show</command:verb>
        <command:noun>SimpleEffectiveAccess</command:noun>
        <!--Add Dev version info here.-->
        <dev:version />
    </command:details>
    <maml:description>
    <!--This is the Description section-->
        <maml:para></maml:para>
    </maml:description>
    <command:syntax> <command:syntaxItem>
            <maml:name>Show-SimpleEffectiveAccess</maml:name>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "false" position = "named" >
                <maml:name>IncludeRootFolder</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </command:parameter>
            <command:parameter required = "false" variableLength = "false" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Account</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "false" >IdentityReference2</command:parameterValue>
            </command:parameter>
            <command:parameter required = "true" variableLength = "true" globbing = "false" pipelineInput = "true (ByValue, ByPropertyName)" position = "1" >
                <maml:name>Path</maml:name>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            <command:parameterValue required="true" variableLength = "true" >String[]</command:parameterValue>
            </command:parameter>
        </command:syntaxItem>
    </command:syntax>
    <command:parameters>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="false" position="named">
            <maml:name>IncludeRootFolder</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <dev:type>
                <maml:name>SwitchParameter</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Account</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="false">IdentityReference2</command:parameterValue>
            <dev:type>
                <maml:name>IdentityReference2</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="1">
            <maml:name>Path</maml:name>
            <maml:description>
                <maml:para></maml:para>
            </maml:description>
            <command:parameterValue required="true" variableLength="true">String[]</command:parameterValue>
            <dev:type>
                <maml:name>String[]</maml:name>
                <maml:uri/>
            </dev:type>
            <dev:defaultValue></dev:defaultValue>
        </command:parameter>
    </command:parameters>
    <command:inputTypes>
        <command:inputType>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri/>
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:inputType>
    </command:inputTypes>
    <command:returnValues>
        <command:returnValue>
            <dev:type>
                <maml:name></maml:name>
                <maml:uri />
                <maml:description>
                    <maml:para></maml:para>
                </maml:description>
            </dev:type>
            <maml:description></maml:description>
        </command:returnValue>
    </command:returnValues>
    <command:terminatingErrors>
    </command:terminatingErrors>
    <command:nonTerminatingErrors>
    </command:nonTerminatingErrors>
    <maml:alertSet>
        <maml:title></maml:title>
        <maml:alert>
            <maml:para></maml:para>
        </maml:alert>
    </maml:alertSet>
    <command:examples>
    </command:examples>
    <maml:relatedLinks>
    </maml:relatedLinks>
</command:command>
</helpItems>