Share via


IVMAccessRights::ChangePermissions property

The ChangePermissions property determines whether this entry controls the ability to change permissions.

This property is read/write.

Syntax

HRESULT put_ChangePermissions(
  [in]  VARIANT_BOOL changePermissions
);

HRESULT get_ChangePermissions(
  [out] VARIANT_BOOL *changePermissions
);

VB
VMAccessRights.ChangePermissions( _
  ByVal changePermissions, _
  ByRef changePermissions _
)

Property value

Contains vbTrue if the entry controls the ability to change permissions of the protected object.

This property value is read/write.

Error codes

Name Meaning
S_OK
The operation was successful.
E_POINTER
changePermissions was NULL.

Examples

The following example prints the ChangePermissions property of the access control entries from the security object protecting access to the COM interfaces and global settings.

Dim vsApp
Dim vsSecurity
Dim vsAccessRights
Dim arProperty

Set vsApp = WScript.CreateObject("VirtualServer.Application")
Set vsSecurity = vsApp.Security
Set vsAccessRights = vsSecurity.AccessRights

For Each arProperty In vsAccessRights
    Wscript.Echo "Name: " & arProperty.Name
    Wscript.Echo "Change permissions: " & arProperty.ChangePermissions
    Wscript.Echo
Next

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

IVMAccessRights