Get Report Binder Configuration
The following example gets the configuration of a report binder.
- Connect to the reporting web service.
- Specify the unique identifier of the report binder in GUID format.
- The user must be a system administrator to execute this command.
Code Sample
# Gets the report binder with the specified unique identifier and displays the name and description.
$reportBinder = $reporting.GET_ReportBinder("34d7de3c-ea46-4a66-9cf1-f877605d6cd3");
Write-Host $reportBinder.DisplayName
Write-Host $reportBinder.Description