Update Report Execution Scheduled Task
The following example updates an existing report 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 execution task with the specified identifier.
$task = $administration.GET_ScheduledTask("22176cac-8f38-49ea-aca4-6a579d333853");
$task.DisplayName = "Updated Report Execution Scheduled Task";
$administration.SET_ScheduledReportExecutionTask($task);