You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Details of the scenario you tried and the problem that is occurring:
When two or more Reporting Services are installed (with different instance names) then the Get-TargetResource will return all instances.
This is because the instance name is not filtered out. Namespace does not help here.
The DSC configuration that is using the resource (as detailed as possible):
Any configuration installing more than one Reporting Services using the same major version.
Version of the Operating System, SQL Server and PowerShell the DSC Target Node is running:
Windows Server 2016, SQL Server 2016, WMF 5.1
What module (SqlServer or SQLPS) and which version of the module the DSC Target Node is running:
SQLPS
Version of the DSC module you're using, or 'dev' if you're using current dev branch:
Dev
The text was updated successfully, but these errors were encountered:
… version (#827)
- Changes to xSQLServerRSConfig
- Fixed so that when two Reporting Services are installed for the same major
version the resource does not throw an error (issue #819).
Details of the scenario you tried and the problem that is occurring:
When two or more Reporting Services are installed (with different instance names) then the Get-TargetResource will return all instances.
This is because the instance name is not filtered out. Namespace does not help here.
The following will return
will return
This is because Get-WmiObject is missing the filter parameter. So tghe Get-WmiObject call here
https://github.com/PowerShell/xSQLServer/blob/b2e553b2a2638fc88df1e815e4867f3733c7eed6/DSCResources/MSFT_xSQLServerRSConfig/MSFT_xSQLServerRSConfig.psm1#L44-L54
Should be
The DSC configuration that is using the resource (as detailed as possible):
Any configuration installing more than one Reporting Services using the same major version.
Version of the Operating System, SQL Server and PowerShell the DSC Target Node is running:
Windows Server 2016, SQL Server 2016, WMF 5.1
What module (SqlServer or SQLPS) and which version of the module the DSC Target Node is running:
SQLPS
Version of the DSC module you're using, or 'dev' if you're using current dev branch:
Dev
The text was updated successfully, but these errors were encountered: