Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The VMRCAuthenticators property contains the VMRC authentication methods supported by Virtual Server.
This property is read-only.
Syntax
HRESULT get_VMRCAuthenticators(
[out] IVMRCAuthenticatorCollection **authenticators
);
VB |
---|
|
Property value
The IVMRCAuthenticatorCollection object representing the VMRC authentication methods supported by Virtual Server.
This property value is read-only.
Error codes
Name | Meaning |
---|---|
|
The operation was successful. |
|
The parameter authenticators is NULL. |
|
An unexpected error has occurred. |
Examples
The following example displays properties of the VMRCAuthenticators property value of the VMVirtualServer object.
Set objVS = CreateObject("VirtualServer.Application")
Wscript.Echo "Name: " & objVS.Name
Set objVMAColl = objVS.VMRCAuthenticators
Dim objAuth
If isNull(objVMAColl) Then
Wscript.Echo "VMRC authenticators: [none]"
Else
Wscript.Echo "VMRC authenticators: "
For Each objAuth in objVMAColl
Wscript.Echo " Name: " & objAuth.Name & " (" & _
objAuth.Description & ")"
Next
End If
Requirements
Product |
Microsoft Virtual Server 2005 onWindows Server 2003 |
Download |
Microsoft Virtual Server 2005 R2 SP1 Update onWindows Server 2008orWindows Server 2003 |
Header |
|