报告从 Microsoft Exchange 服务器的 Exchange 组织的名称。
Visual Basic
On Error Resume Next
Set ObjRoot = GetObject(“LDAP://RootDSE”)
strConfigNC = ObjRoot.Get(“configurationNamingContext”)
Set colExchangeContainer = GetObject _
(“LDAP://CN=Microsoft Exchange,CN=Services,” & strConfigNC)
If Err = 0 Then
For Each objExchangeOrg In colExchangeContainer
If (objExchangeOrg.Class = “msExchOrganizationContainer”) Then
Wscript.Echo “Exchange Organization name: ” & _
objExchangeOrg.Get(“CN”)
End If
Next
Else
WScript.Echo “Exchange not installed.”
End If
Latest posts by Exchange中文站 (see all)
- 微软将推出卫星解决方案:可连接到 Azure 云服务 - 2020年9月17日
- Windows Terminal 1.0正式发布 - 2020年5月25日
- Azure Lighthouse 相关介绍 - 2020年3月2日
发布于:
浏览:3139 次
还没有评论