aggaton
aggaton

Reputation: 3350

Listing SSRS instances on network

I am looking for something similar to this:

var table = SqlDataSourceEnumerator.Instance.GetDataSources();

that lists Report Server (SSRS) instances on the network, rather than SQL server instances.

Is there a way to obtain such a list?

Upvotes: 0

Views: 62

Answers (1)

Ross Bush
Ross Bush

Reputation: 15175

There seems to be no way to verify that an endpoint is running ssrs by url, however, if you can enumerate server names on a network you could call a wmi function outlined here to determine if the ssrs is running on that machine.

Upvotes: 1

Related Questions