Update Report Binder Execution Scheduled Task
The following example updates an existing report binder execution scheduled task.
- Connect to the administration web service.
- Specify the unique identifier of the scheduled task in GUID format.
Code Sample
# Updates the scheduled report binder execution task with the specified identifier.
$task = $administration.GET_ScheduledTask("1f1ef16c-b3dd-44d2-b15a-64883249b3c8");
$task.DisplayName = "Updated Report Binder Execution Scheduled Task";
$administration.SET_ScheduledReportBinderExecutionTask($task);