偵測遠端桌面服務角色是否已安裝
您可以使用 Win32_ServerFeature WMI 類別來偵測是否已安裝遠端桌面服務伺服器角色。
下列 C# 範例顯示一個方法,如果安裝並執行了遠端桌面服務伺服器角色,則會傳回 True,否則會傳回 false。 由於 Win32_ServerFeature WMI 類別僅適用於 Windows Server 2008,因此此程式代碼與舊版 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;
}