We are developing some reports locally. These reports are to be installed on a customer's machine. But we cannot reach this machine online.
What I've managed so far:
A folder containing:
- all report objects (data source, data sets and reports)
- a copy of the PowerShell module ReportingServicesTools
- a PowerShell script
This script will create all needed folders within ReportServer, load the data source, then the data sets and finally the reports. This works, I can open the portal and can see my objects.
UPDATE:
The downloaded rdl files had their data-set-references set to the plain dataset's name - why ever... It took me hours to find, that the reference must include the full (internal) path to the dataset... Now the paginated reports really work, heureka!
The Questions
This does not work for
- mobile reports (aka dashboards, but not PowerBI)
- our branding file
How can mobile reports be uploaded via PowerShell?
How can a custom branding package be uploaded?
Is there a better approach? I'm fairly new to PowerShell and therefore open to any advice! TIA
EDIT
Deleted the script fragment as I've posted a comprehensive answer myself...
UPDATE: No answer yet?
At the bottom of my own answer there are some open questions... I'd love to give the bounty to somebody but it seems to be lost... Anyway: If Anybode might answer at least part of the remaining open questions there's a good chance for 150 points :-)
Microsoft decided to let us poor tech staff alone with this...
The issues I've found so far:
As nobody seems to be able to help - even with a bounty! - I'll state what I've found so far:
The following PowerShellScript is a working stand-alone deployment on a disconnected machine.
Assumptions:
Good luck with this!
#Import the module and create folders. This might be automated too (out of the directory structure found on disc, but this is up to you...)
#Create shared data source
#Modify shared data set files: The hardcoded reference to the server's URL must be changed
#Read all created shared data sets out of the database into a table variable
#Modify paginated report files: The newly written shared datasets must be written into the report-XML
#Modify mobile report files: This is more complicated... The files are ZIPs actually. These ZIPs contain several files. The
metadata.xml
and thesources.xml
contain hard-coded references and must be changed#Open all metadata.xml files in all unzipped folders and modify them
#Open all sources.xml files in all unzipped folders and modify them
#Rename all original .rsmobile files
Attention
Allthough the created ZIP-files (the new
.rsmobile
files) are valid and contain the correct content, it is impossible to upload them via SSRS portal (error: invalid report package). But - funny enough! - when you use explorer'ssend to compressed directory
and rename the resulting ZIP file accordingly, this can be uploaded.Still open questions:
.rsmobile
(ZIP-file) that it is uploadable? (must be the same way of zipping as windows does it implicitly when sending to a compressed folder)This one I could answer in the meanwhile (see second answer):