Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get-SqlDscReportingServices: New command proposal #2011

Open
johlju opened this issue May 4, 2024 · 0 comments
Open

Get-SqlDscReportingServices: New command proposal #2011

johlju opened this issue May 4, 2024 · 0 comments
Labels
command proposal The issue is proposing to add a new command to the module. help wanted The issue is up for grabs for anyone in the community.

Comments

@johlju
Copy link
Member

johlju commented May 4, 2024

Command proposal

Returns an [hashtable] array of all installed SQL Server Reporting Services instances.

Proposed parameters

Parameter Mandatory Data type Description Default value Allowed values
ParameterName Yes String Detailed description None None

Special considerations or limitations

There could also be an additional command that uses the same logic but returns Power BI Report Server instances, e.g. Get-SqlDscPowerBIReportServer.

Should at least return the following properties:

Property name Data type Description
CurrentVersion String Returns the version of the installed Microsoft SQL Server Reporting Service instance.
ServiceName String Returns the name of the Microsoft SQL Server Reporting Service instance Windows service.
ServiceAccount String Returns the account that runs of the Microsoft SQL Server Reporting Service instance Windows service.
ErrorDumpDirectory String Returns the path to error dump log files.
WebPortalApplicationName String Should use the code here:
if ($sqlVersion -ge 13)
{
$reportsApplicationName = 'ReportServerWebApp'
}
else
{
$reportsApplicationName = 'ReportManager'
}
@johlju johlju changed the title Get-SqlDscReportingService: New command proposal Get-SqlDscReportingServices: New command proposal May 4, 2024
@johlju johlju added help wanted The issue is up for grabs for anyone in the community. command proposal The issue is proposing to add a new command to the module. labels May 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
command proposal The issue is proposing to add a new command to the module. help wanted The issue is up for grabs for anyone in the community.
Projects
None yet
Development

No branches or pull requests

1 participant