Get Report Folder Configuration
The following example gets the configuration of a report folder.
- Connect to the reporting web service. 
 - Specify the unique identifier of the report folder in GUID format.
 - The user must be a system administrator to execute this command.
 
Code Sample
# Gets the report folder with the specified unique identifier and displays the name and description.
$reportFolder = $reporting.GET_ReportFolder("e5cf10bc-a9e0-446e-b049-e06937213615");
Write-Host $reportFolder.DisplayName
Write-Host $reportFolder.Description