Dear All,
If you want to take a backup of the complete SSRS report server, please follow the below setups
Run PowerShell with Full Administrator Rights
#------------------------------------------------------
#Prerequisites
Install-Module -Name ReportingServicesTools
#------------------------------------------------------
#Lets get security on all folders in a single instance
#------------------------------------------------------
#Declare SSRS URI
$sourceRsUri = 'http://ReportServerURL/ReportServer/ReportService2010.asmx?wsdl'
# in my case http://sjerpsrvr2/ReportServer/ReportService2010.asmx?wsdl
#Declare Proxy so we dont need to connect with every command
$proxy = New-RsWebServiceProxy -ReportServerUri $sourceRsUri
#Output ALL Catalog items to file system
Out-RsFolderContent -Proxy $proxy -RsFolder / -Destination 'C:\SSRS_Out' -Recurse
I hope it will work
Regards
Rashid Imran Bilgrami
3ART Technologies
https://www.3art.tech
Comments
Post a Comment
Thanks for the Comments , Your review will display soon