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 |
---|
|
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 |
---|---|
|
The operation was successful. |
|
The parameter authenticator is NULL. |
|
The authenticator instance represented an invalid or unsupported authentication method. |
|
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 |
|