Get-SEESEPPools: return registered SEP pools

Syntax

Get-SEESEPPools parameter parameter . . 

Returns registered SEP Pools in a given database instance.

Parameters

-usedb:<database-server-instance>
Name of the database server instance that hosts the region database. For example:
Default database server on the local machine: -usedb
Default database server on the local machine, identical to -usedb: -usedb:(local)
Specific database server on the local machine: -usedb:(local)\SQLEXPRESS
Default database server instance on a specific machine (SC1 used in example) -usedb:SC1
Specific database server instance on a specific machine (SC1, SQLEXPRESS used in example for machine name, database server name) -usedb:SC1\SQLEXPRESS
Note: Parameter values are not case sensitive.
-verbose
The command output displays all of the messages that the command generates.

Outputs

Get-SEESEPPools returns the following object:

class RegisteredSEPPool
{
   string EventMonitorEndpoint
   string Host
   string Region
   string SEPPoolEndpoint
   DateTime TimeRegistered
}

Example

This command returns information on all the registered SEP Pools.

Get-SEESEPPools -UseDB "(local)\SQLEXPRESS"