Update Report Folder Configuration
The following example updates the configuration of a report folder.
- Connect to the reporting web service.
- Specify the unique identifier of the report folder in GUID format.
- The user must be a system administrator to execute this command.
- Changes to any of the settings of the root report folder other than the security settings will have no effect.
Code Sample
# Updates the report folder with the specified unique identifier changing the display name of the report folder.
$reportFolder = $reporting.GET_ReportFolder("e5cf10bc-a9e0-446e-b049-e06937213615");
$reportFolder.DisplayName = "Updated Report Folder";
$reporting.SET_ReportFolder($reportFolder);