Follow sqlserver-dba.com

Subscribe to RSS feed  Follow @jackvamvas - Twitter

*Use the Comments section for questions

SQLServer-DBA.com Links

Dba_db2_button

dba-ninja.com

SQL Server DBA Jobs

How to check SSRS service status with Powershell

08 June,2021 by Tom Collins

Question: How can I check for the SQL Server Reporting Service service status with Powershell?    The status checks should be for remote servers

 

Answer: As long as you have network access & permissions, you can run similar to the below command. This example targets 1 server , but you could easily iterate through a list of servers. 

Get-Service *report* -ComputerName MYSERVER | select MachineName, Status, Name, DisplayName

 

###RESULT


MachineName Status Name DisplayName
----------- ------ ---- -----------
MYSERVER Running SQLServerReportingServices SQL Server Reporting Services

 

Read more on Powershell & managing SQL Server

Powershell script - Get the total table count of all databases in multiple SQL Server Instances

How to get SQL Server database object count using Powershell Measure-Object

Powershell script to find SQL Server Instances on a Server

Post disaster recovery SQL Server database checkout script


Author: Tom Collins (http://www.sqlserver-dba.com)


Share:

Verify your Comment

Previewing your Comment

This is only a preview. Your comment has not yet been posted.

Working...
Your comment could not be posted. Error type:
Your comment has been posted. Post another comment

The letters and numbers you entered did not match the image. Please try again.

As a final step before posting your comment, enter the letters and numbers you see in the image below. This prevents automated programs from posting comments.

Having trouble reading this image? View an alternate.

Working...

Post a comment on How to check SSRS service status with Powershell


sqlserver-dba.com | SQL Server Performance Tuning | SQL Server DBA:Everything | FAQ | Contact|Copyright & Disclaimer