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
Get-DbaService - Add PowerBI Report Server detection
Detect Power BI Report Server (PBIRS) as a distinct service type ('PowerBI')
instead of incorrectly labeling it as 'SSRS'. PBIRS uses the WMI namespace
RS_PBIRS under root\Microsoft\SQLServer\ReportServer; this prefix is now
used to set the appropriate ServiceType.
Adds 'PowerBI' to the -Type ValidateSet so callers can filter specifically
for PBIRS services.
Fixes#8408
(do Get-DbaService)
Co-authored-by: Andreas Jordan <andreasjordan@users.noreply.github.com>
Copy file name to clipboardExpand all lines: public/Get-DbaService.ps1
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ function Get-DbaService {
30
30
31
31
.PARAMETERType
32
32
Filters results to specific SQL Server service types such as Database Engine, SQL Agent, or Reporting Services.
33
-
Use this when troubleshooting specific service types or performing targeted service management operations. Can be one of the following: "Agent", "Browser", "Engine", "FullText", "SSAS", "SSIS", "SSRS", "PolyBase", "Launchpad"
33
+
Use this when troubleshooting specific service types or performing targeted service management operations. Can be one of the following: "Agent", "Browser", "Engine", "FullText", "SSAS", "SSIS", "SSRS", "PolyBase", "Launchpad", "PowerBI"
34
34
35
35
.PARAMETERServiceName
36
36
Specifies exact Windows service names to retrieve, bypassing automatic service discovery.
0 commit comments