IVMVirtualServer::VMRCAuthenticator property

The VMRCAuthenticator property contains the authentication method to use for new VMRC connections.

This property is read/write.

Syntax

HRESULT put_VMRCAuthenticator(
  [in]  VMRCAuthenticationType *authenticator
);

HRESULT get_VMRCAuthenticator(
  [out] IVMRCAuthenticator     **authenticator
);

VB
VMVirtualServer.VMRCAuthenticator( _
  ByRef authenticator, _
  ByVal authenticator _
)

Property value

The VMRCAuthenticator object representing the authentication method to use for new VMRC connections.

This property value is read/write.

Error codes

Name Meaning
S_OK
The operation was successful.
E_POINTER
The parameter authenticator is NULL.
E_INVALIDARG
The authenticator instance represented an invalid or unsupported authentication method.
DISP_E_EXCEPTION
An unexpected error has occurred.

Examples

The following example displays properties of the VMRCAuthenticator 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
VsComInterfaces.h

See also

IVMVirtualServer