r/ssrs • u/Valuable-Ant3465 • 6d ago
Bulk upload to SSRS using Powershell
Hi all,
I used this script couple of years ago to do bulk upload, but now in 2026 could not make it work.
This is a source I used from EitanBlumin/Deploy SSRS Reports.ps1
Was able to verify $TargetReportServerUri link, it displays On in the browser.
[string] $TargetReportServerUri = "http://myssrsreport/ReportServer",
[string] $ApiVersion =2010,
It fails on main Upload command
Write-RsCatalogItem -Proxy $Proxy -Destination $currTargetFolder -Verbose -Overwrite -Path $currRdl -ErrorAction Stop | Out-Null
with this message:
Have this message:
… roperties = New-Object System.Collections.Generic.List[$propertyDataT …
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| Cannot find type [System.Collections.Generic.List[System.Management.Automation.Property]]: verify that the
| assembly containing this type is loaded.
Tried all suggestion and still can't make it work. Appreciate if you have hints how to solve it.
Best
VA