en-US/about_FSRMFileScreenException.help.txt

.NAME
    FSRMFileScreenException
 
# Description
    
    This resource is used to configure File Screen Exceptions in File
    Server Resource Manager.
     
.PARAMETER Path
    Key - String
    The path this FSRM File Screen applies to.
 
.PARAMETER Description
    Write - String
    An optional description for this FSRM File Screen.
 
.PARAMETER Ensure
    Write - String
    Allowed values: Present, Absent
    Specifies whether the FSRM File Screen should exist.
 
.PARAMETER IncludeGroup
    Write - String
    An array of File Groups to include in this File Screen.
 

    .EXAMPLE
        This configuration add a File Screen Exception that Includes 'E-mail Files' to
        the path 'D:\Users'.

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

    Import-DscResource -Module FSRMDsc

    Node $NodeName
    {
        FSRMFileScreenException DUsersFileScreenException
        {
            Path = 'd:\users'
            Description = 'File Screen for Blocking Some Files'
            Ensure = 'Present'
            IncludeGroup = 'E-mail Files'
        } # End of FSRMFileScreenException Resource
    } # End of Node
} # End of Configuration