Get-RASPubFolder
Retrieves information about one or multiple published folders.
Get-RASPubFolder [[-Id] <uint>] [-SiteId <uint>] [<CommonParameters>] Get-RASPubFolder [[-Name] <string>] [-SiteId <uint>] [<CommonParameters>]
Retrieves information about one or multiple published folders. The cmdlet returns an object of type PubFolder. To see the complete list of object properties, use the Format-List cmdlet (see examples).
-Name <string> Published resource name.
-Id <uint> Published resource ID.
-SiteId <uint> Site ID.
<CommonParameters>
-none-
---------- EXAMPLE 1 ---------- Get-RASPubFolder | Format-List Retrieves information about all available published folders. The Format-List cmdlet formats the display output to include all available folder properties. ---------- EXAMPLE 2 ---------- Get-RASPubFolder "My Folder" Retrieves the information about a published folder specified by name. ---------- EXAMPLE 3 ---------- Get-RASPubFolder -Id 11 Retrieves the information about a published folder specified by ID.