Page 1 of 1

Comando per controllare quale RDCB è attivo (Remote Desktop Connection Broker)

Posted: 27 Jul 2025, 12:51
by daniele

Code: Select all

sqlcmd -S RDG01 -d RDCB -Q "
  SET NOCOUNT ON;
  SELECT
    Id,
    Name           AS BrokerName,
    LatestTimeStamp
  FROM rds.ConnectionBroker
  ORDER BY LatestTimeStamp DESC;
"