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 now works with every SSRS version. Previously this only worked with SSRS 2008r2 or later.
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.
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
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") }