Duplicate Report Binder
The following example duplicates an existing report binder.
- Connect to the reporting web service.
- Specify the unique identifier of the report binder to duplicate in GUID format.
- The user must be a system administrator to execute this command.
Code Sample
# Duplicates the report binder with the specified identifier and displays the identifier of the newly created report binder.
$newIdentifier = $reporting.DO_DuplicateReportBinder("48340e7b-952a-4713-b3a4-c4d943b7cd7d");
Write-Host $newIdentifier;