en-US/about_FSRMAutoQuota.help.txt

.NAME
    FSRMAutoQuota
 
# Description
    
    This resource is used to configure Auto Quotas in File Server Resource Manager.
     
.PARAMETER Path
    Key - String
    The path this FSRM Quota applies to.
 
.PARAMETER Ensure
    Write - String
    Allowed values: Present, Absent
    Specifies whether the FSRM Quota should exist.
 
.PARAMETER Disabled
    Write - Boolean
    Disables the FSRM Quota applied to this path.
 
.PARAMETER Template
    Write - String
    The name of the FSRM Quota Template to apply to this path.
 

    .EXAMPLE
        This configuration will assign an FSRM Auto Quota to the path 'd:\users' using the
        template '5 GB Limit'.

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DscResource -Module FSRMDsc

    Node $NodeName
    {
        FSRMAutoQuota DUsers
        {
            Path = 'd:\Users'
            Ensure = 'Present'
            Disabled = $false
            Template = '5 GB Limit'
        } # End of FSRMAutoQuota Resource
    } # End of Node
} # End of Configuration