The following example updates the configuration of a report binder.



Code Sample

# Updates the report binder with the specified unique identifier changing the display name of the report binder.

$reportBinder = $reporting.GET_ReportBinder("34d7de3c-ea46-4a66-9cf1-f877605d6cd3");

$reportBinder.DisplayName = "Updated Report Binder";

$reporting.SET_ReportBinder($reportBinder);