Skip to content

Get‑SqlDscRSSetupConfiguration

dscbot edited this page Apr 4, 2025 · 2 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

OUTPUTS

Returns a PSCustomObject with the following properties:

- InstanceName: The name of the Reporting Services instance.

- InstallFolder: The installation folder path.

- ServiceName: The name of the service.

- ErrorDumpDirectory: The path to the error dump directory.

- CustomerFeedback: Whether customer feedback is enabled.

- EnableErrorReporting: Whether error reporting is enabled.

- ProductVersion: The product version from registry.

- CurrentVersion: The current version from registry.

- VirtualRootServer: The virtual root server value.

- ConfigFilePath: The path to the report server configuration file.

- EditionID: The edition ID of the Reporting Services instance.

- EditionName: The edition name of the Reporting Services instance.

- IsSharePointIntegrated: Whether the instance is SharePoint integrated.

MSReportServer_Instance.

- InstanceId: The instance ID of the Reporting Services instance.

NOTES

RELATED LINKS

Home

Commands

Resources

Usage

Clone this wiki locally