IVMVirtualMachine::Security property
The IVMSecurity object associated with this virtual machine.
This property is read-only.
Syntax
HRESULT get_Security(
[out] IVMSecurity **outSecurity
);
VB |
---|
|
Property value
An VMSecurity instance that represents the security attributes of this virtual machine.
This property value is read-only.
Error codes
Name | Meaning |
---|---|
|
The operation was successful. |
|
The outSecurity parameter is NULL. |
|
Could not allocate memory for the security descriptor. |
|
The configuration is unknown. |
|
An unexpected error has occurred. |
Examples
The following example displays VMSecurity properties of a VMVirtualMachine object.
Set objVS = CreateObject("VirtualServer.Application")
Set objVM = objVS.FindVirtualMachine("Windows Server 2003")
Set objSec = objVM.Security
WScript.Echo "VM Name: " & objVM.Name
WScript.Echo "Security principle: "
WScript.Echo " Owner Name: " & objSec.OwnerName
WScript.Echo " Owner SID: " & objSec.OwnerSID
WScript.Echo " Group Name: " & objSec.GroupName
WScript.Echo " Group SID: " & objSec.GroupSID
Requirements
Product |
Microsoft Virtual Server 2005 onWindows Server 2003 |
Download |
Microsoft Virtual Server 2005 R2 SP1 Update onWindows Server 2008orWindows Server 2003 |
Header |
|