December 2015
Intermediate to advanced
760 pages
14h 31m
English
This recipe shows how you can download all RDL files from your Report Server.
In this recipe, we will download all RDL files from the SSRS Report Server into C:\SSRS\ in a subfolder structure that mimics the folder structure in the Report Server.
Identify your SSRS 2012 Report Server URL. We need to reference the ReportService2010 web service, and you can reference it using the following command:
<ReportServer URL>/ReportService2010.asmx
Let's explore the code required to download the RDL files from your Report Server:
$VerbosePreference = "Continue" $reportServerUri = "http://localhost/ReportServer/ReportService2010.asmx" ...
Read now
Unlock full access