Is there a property you can set in report designer to make a report or datasource hidden in report manager I am making a rss script to deploy all datasources and reports, but some I want hidden. If you can't set it in report designer is there a way to set the property in the rss script for the reports and datasources Thanks.

Is there a property in the report designer to set a report, datasource, etc to be hidden in report manager?
KyleHenly
You can hide report or datasource by setting property "Hidden" to true
Dim Properties() As Property = New Property(0) {}
Dim hidden as new Property
hidden.Name="Hidden"
hidden.Value = "true"
Properties (0) = hidden
RS.CreateReport(Report, Parent, Overwrite, Definition, Properties)