Show/Hide Toolbars

SSRS Subscription Manager Help File

Navigation: » No topics above this level «

Breaking Changes

Scroll Prev Top Next More

.net 4.62

 Subscription Manager Version 5 has been upgraded to use .net 4.62. Download from https://www.microsoft.com/en-us/download/details.aspx?id=53344

 

Rerun Subscriptions

 

 Rerun Subscriptions now works with every SSRS version. Previously this only worked with SSRS 2008r2 or later.

 

Bulk Backup and Restore File Names

 

 

 This Affects SSRS Integrated (SharePoint) Only

 

 In version 5 files saved are now the same for SSRS native and integrated.

 The reason for the change is allow migration of subscriptions between native and integrated SSRS versions.

 

 

 Previously in version 4 if a report was backed up with integrated mode the file extension was included.

 

 

 Example:

 

 

 Subscription Manager Version 4

 

         report name sales.rdl

 

         Native mode file sales.xlsx

         Integrated mode file sales.rdl.xlsx

 

 

 Subscription Manager Version 5

 

         report name sales.rdl

 

         Native mode file sales.xlsx

         Integrated mode file sales.xlsx

 

 

 

 

 PowerShell to clean up existing RDL files:

 

 Open PowerShell and run the respective command below. This converts the Excel files to the new format

 

 Excel .xlsx

         Get-ChildItem -Recurse -Include *.RDL.xlsx | Rename-Item -NewName { $_.Name.replace(".RDL.xlsx",".xlsx") }

 

 Excel .xls

         Get-ChildItem -Recurse -Include *.RDL.xls | Rename-Item -NewName { $_.Name.replace(".RDL.xls",".xls") }