July 2018
Beginner
552 pages
13h 18m
English
On the import side of things, there are analogous Write-* commands, which are used to write content from file back into a Reporting Services server: Write-RsCatalogItem and Write-RsFolderContent:
# Import Example.rsds into the SSRS folder /Foo Write-RsCatalogItem -Path .\Example.rsds -RsFolder "/Foo" # Import all reports in the current folder Get-ChildItem *.rdl | Select-Object -ExpandProperty FullName | Write-RsCatalogItem -RsFolder "/Foo" # Import everything in C:\Import and subfolders Write-RsFolderContent -Path C:\Import -RsFolder "/" -Recurse
Read now
Unlock full access