Compartir a través de


Detección de si el rol servicios de Escritorio remoto está instalado

Puede usar la clase WMI de Win32_ServerFeature para detectar si está instalado el rol de servidor servicios de Escritorio remoto.

En el siguiente ejemplo de C# se muestra un método que devuelve True si el rol de servidor servicios de Escritorio remoto está instalado y en ejecución o false de otro modo. Dado que la clase WMI de Win32_ServerFeature solo está disponible a partir de Windows Server 2008, este código no es compatible con versiones anteriores de Windows.

static void Main(string[] args)
{
    // 14 is the identifier of the Remote Desktop Services role.
    HasServerFeatureById(14);
}

static bool HasServerFeatureById(UInt32 roleId)
{
    try
    {
        ManagementClass serviceClass = new ManagementClass("Win32_ServerFeature");
        foreach (ManagementObject feature in serviceClass.GetInstances())
        {
            if ((UInt32)feature["ID"] == roleId)
            {
                return true;
            }
        }

        return false;
    }
    catch (ManagementException)
    {
        // The most likely cause of this is that this is being called from an 
        // operating system that is not a server operating system.
    }

    return false;
}