Server
Gets the Active Directory domain controller name being used to establish the connection to the Active Directory domain.
Syntax
string Server {get;}
Property value
The domain controller name used to connect to the domain.
Example
The following code sample illustrates using this property in a script:
...
'Connect to the domain controller Active Directory
cims.Connect("paris.ajax.org",”pierre”,”lesbleUs”)
‘Display the domain controller name
wScript.Echo “Connected to: “ & cims.Server
...