top of page
  • Twitter Social Icon
  • LinkedIn Social Icon
  • Facebook Social Icon
Search

Migrate ALL SSRS report items

  • Writer: Don Richardson
    Don Richardson
  • Jun 28, 2019
  • 1 min read

While hunting around to find a simple way of migrating my SSRS reports to a different server there were many people who had complicated solutions.

This is mine:


1) Download all the items to a folder on your machine:

#Declare SSRS URI

$sourceRsUri = "http://<servername>/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:\Temp\Reports' -Recurse


2) Upload to new server

Write-RsFolderContent -ReportServerUri 'http://<NewServerName>/ReportServer' -Path c:\temp\reports -RsFolder / -Recurse

 
 
 

Recent Posts

See All
One object Multiple implementations

So, I need to be able to execute a specific interface implementation based on the interface being used on the newly instantiated object....

 
 
 
System.Net.Http v4.2.0.0 not loading

So.. it turns out that the incorrect dll is loaded via nuget. As a work-around, redirect your manifest to look for 4.0.0.0 and it works....

 
 
 

Comments


  • Grey Twitter Icon
  • Grey LinkedIn Icon
  • Grey Facebook Icon

© 2023 by Talking Business.  Proudly created with Wix.com

Thanks for submitting!

SIGN UP AND STAY UPDATED!
bottom of page