The following example updates the configuration of a report folder.



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);