{"id":21697594,"url":"https://github.com/mem-zone/mem.zone-install-srsreport","last_synced_at":"2025-08-22T19:14:28.642Z","repository":{"id":136573763,"uuid":"247750348","full_name":"MEM-Zone/MEM.Zone-Install-SRSReport","owner":"MEM-Zone","description":"SRS Report PowerShell with SQL Extensions Installer","archived":false,"fork":false,"pushed_at":"2023-10-03T13:27:10.000Z","size":420,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-26T07:03:41.096Z","etag":null,"topics":["configmgr","configurationmanager","powershell","powershell-script","ssrs"],"latest_commit_sha":null,"homepage":"https://MEMZ.one/Install-SRSReport-GIT","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MEM-Zone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-16T15:41:32.000Z","updated_at":"2023-10-03T11:36:46.000Z","dependencies_parsed_at":"2023-10-03T19:44:48.245Z","dependency_job_id":null,"html_url":"https://github.com/MEM-Zone/MEM.Zone-Install-SRSReport","commit_stats":null,"previous_names":["mem-zone/mem.zone-install-srsreport"],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MEM-Zone%2FMEM.Zone-Install-SRSReport","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MEM-Zone%2FMEM.Zone-Install-SRSReport/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MEM-Zone%2FMEM.Zone-Install-SRSReport/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MEM-Zone%2FMEM.Zone-Install-SRSReport/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MEM-Zone","download_url":"https://codeload.github.com/MEM-Zone/MEM.Zone-Install-SRSReport/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248565179,"owners_count":21125435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["configmgr","configurationmanager","powershell","powershell-script","ssrs"],"created_at":"2024-11-25T19:28:30.276Z","updated_at":"2025-04-12T12:21:00.658Z","avatar_url":"https://github.com/MEM-Zone.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Release version][release-version-badge]][release-version]\n[![Release date][release-date-badge]][release-date]\n[![Issues count][issues-badge]][issues]\n[![Comits since release][commits-since-badge]][commits-since]\n[![Chat on discord][discord-badge]][discord]\n[![Follow on twitter][twitter-badge]][twitter]\n\n# Install-SRSReport\n\nThis is a solution installing SRS Reports using PowerShell.\n\n## Latest release\n\nSee [releases](https://MEMZ.one/Install-SRSReport-RELEASES).\n\n## Changelog\n\nSee [changelog](https://MEMZ.one/Install-SRSReport-CHANGELOG).\n\n## Prerequisites\n\n### Software\n\n* Microsoft SQL Server Reporting Services (SSRS) 2017 or above.\n* [ReportingServiceTools cmdlet](https://github.com/microsoft/ReportingServicesTools)\n\n\u003e Notes\n\u003e If the ReportingServiceTools is not present the user will be asked to allow installation.\n\n## Functions\n\n### Get-RINode\n\nGets a report item node information.\n\n### Set-RINodeValue\n\nUpdates the shared DataSource of a report or multiple reports on a report server.\n\n### Install-RIReport\n\nUploads a report or reports in a folder on disk to a report server.\n\n### Set-RIDataSourceReference\n\nUpdates the shared DataSource of a report or multiple reports on a report server.\n\n### Add-RISQLExtension\n\nAdds sql extension(s) from a folder on disk to specified SQL database.\n\n## Extensions\n\nThere are two types of extensions currently supported. You can find two examples in the `Extensions` folder.\nExtensions are useful when you need to add user defined functions or give additional rights for your imported reports.\n\n* Permission\n* User Defined function\n\nNotes\n\u003e The extensions need to be in the same folder and have the `perm` for Permission or `ufn` for user defined function prefix.\n\n## Usage\n\n```PowerShell\n## Get syntax help\nGet-Help .\\Install-SRSReport.ps1\n\n## Typical installation example\n#  With extensions\n.\\Install-SRSReport.ps1 -ReportServerUri 'http://CM-SQL-RS-01A/ReportServer' -ReportFolder '/ConfigMgr_XXX/SRSDashboards' -ServerInstance 'CM-SQL-RS-01A' -Database 'CM_XXX' -Overwrite -Verbose\n#  Without extensions (Permissions will still be granted on prerequisite views and tables)\n.\\Install-SRSReport.ps1 -ReportServerUri 'http://CM-SQL-RS-01A/ReportServer' -ReportFolder '/ConfigMgr_XXX/SRSDashboards' -ServerInstance 'CM-SQL-RS-01A' -Database 'CM_XXX' -ExcludeExtensions -Verbose\n#  Extensions only\n.\\Install-SRSReport.ps1 -ServerInstance 'CM-SQL-RS-01A' -Database 'CM_XXX' -ExtensionsOnly -Overwrite -Verbose\n```\n\n\u003e**Notes**\n\u003e If you don't use `Windows Authentication` (you should!), you can use the `-UseSQLAuthentication` switch.\n\u003e PowerShell script needs to be run as administrator.\n\n## Preview\n\n![](https://github.com/MEM-Zone/MEM.Zone-Install-SRSReport/blob/master/Install-SRSReport/Preview/Install-SSRSReport.gif)\n\n[release-version-badge]: https://img.shields.io/github/v/release/MEM-Zone/MEM.Zone-Install-SRSReport\n[release-version]: https://github.com/MEM-Zone/MEM.Zone-Install-SRSReport/releases\n[release-date-badge]: https://img.shields.io/github/release-date-pre/MEM-Zone/MEM.Zone-Install-SRSReport\n[release-date]: https://github.com/MEM-Zone/MEM.Zone-Install-SRSReport/releases\n[issues-badge]: https://img.shields.io/github/issues/MEM-Zone/MEM.Zone-Install-SRSReport\n[issues]: https://github.com/MEM-Zone/MEM.Zone-Install-SRSReport/issues?q=is%3Aopen+is%3Aissue\n[commits-since-badge]: https://img.shields.io/github/commits-since/MEM-Zone/MEM.Zone-Install-SRSReport/latest.svg\n[commits-since]: https://github.com/MEM-Zone/MEM.Zone-Install-SRSReport/commits/master\n[discord-badge]: https://img.shields.io/discord/666618982844989460?logo=disco\n[discord]: https://discord.gg/dz2xcDz\n[twitter-badge]: https://img.shields.io/twitter/follow/ioanpopovici?style=social\u0026logo=twitter\n[twitter]: https://twitter.com/intent/follow?screen_name=ioanpopovici\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmem-zone%2Fmem.zone-install-srsreport","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmem-zone%2Fmem.zone-install-srsreport","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmem-zone%2Fmem.zone-install-srsreport/lists"}