Skip to content

Get‑SqlDscRSSetupConfiguration

dscbot edited this page Dec 5, 2025 · 3 revisions

SYNOPSIS

Gets the SQL Server Reporting Services or Power BI Report Server setup configuration from the Registry.

SYNTAX

Get-SqlDscRSSetupConfiguration [[-InstanceName] <String>] 
 [<CommonParameters>]

DESCRIPTION

Gets the SQL Server Reporting Services and Power BI Report Server setup configuration information from the Registry. This includes information like instance name, installation folder, service name, error dump directory, customer feedback settings, error reporting settings, virtual root, configuration file path, and various version information of the installed Reporting Services instance.

When no InstanceName is specified, it returns configuration information for all installed Reporting Services instances.

EXAMPLES

EXAMPLE 1

Get-SqlDscRSSetupConfiguration

Returns configuration information about all SQL Server Reporting Services and Power BI Report Server instances.

EXAMPLE 2

Get-SqlDscRSSetupConfiguration -InstanceName 'SSRS'

Returns configuration information about the SQL Server Reporting Services instance 'SSRS'.

EXAMPLE 3

Get-SqlDscRSSetupConfiguration -InstanceName 'PBIRS'

Returns configuration information about the Power BI Report Server instance 'PBIRS'.

PARAMETERS

-InstanceName

Specifies the instance name to return configuration information for. If not specified, configuration information for all Reporting Services and Power BI Report Server instances will be returned.

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None.

OUTPUTS

PSCustomObject[]

Returns an array of custom objects containing Reporting Services configuration

information including instance name, installation folder, service details, version

information, and additional properties.

NOTES

RELATED LINKS

Home

Commands

Resources

Usage

Clone this wiki locally