Create Report Binder
The following example creates a new report binder.
- Connect to the reporting web service.
- Specify the unique identifier of the report folder where the report binder is to be created in GUID format. To create the report binder in the root report folder use the well known identifier of the root report folder "3f836181-2109-4f5b-a1cf-b7aa8d14c212".
- The user must be a system administrator to execute this command.
Code Sample
# Creates a new report binder in the report folder with the specified identifier and displays the identifier of the newly created report binder.
$newIdentifier = $reporting.DO_CreateReportBinder("e5cf10bc-a9e0-446e-b049-e06937213615");
Write-Host $newIdentifier;