The user's operator privileges.
VBS include
'OperatorPrivileges - begin
Public Const opNone = &H0
Public Const opPrint = &H1 'Print operator privilege.
Public Const opComm = &H2 'Communications operator privilege.
Public Const opServer = &H4 'Server operator privilege.
Public Const opAccounts = &H8 'Accounts operator privilege.
'OperatorPrivileges - end
VB4 include
'OperatorPrivileges - begin
Public Const opNone As Long = &H0
Public Const opPrint As Long = &H1 'Print operator privilege.
Public Const opComm As Long = &H2 'Communications operator privilege.
Public Const opServer As Long = &H4 'Server operator privilege.
Public Const opAccounts As Long = &H8 'Accounts operator privilege.
'OperatorPrivileges - end
VB5 include
Public Enum OperatorPrivileges
opNone = &H0
opPrint = &H1 'Print operator privilege.
opComm = &H2 'Communications operator privilege.
opServer = &H4 'Server operator privilege.
opAccounts = &H8 'Accounts operator privilege.
End Enum 'OperatorPrivileges
JScript include
//OperatorPrivileges - begin
var opNone = 0x0;
var opPrint = 0x1; //Print operator privilege.
var opComm = 0x2; //Communications operator privilege.
var opServer = 0x4; //Server operator privilege.
var opAccounts = 0x8; //Accounts operator privilege.
//OperatorPrivileges - end
IDL include
// OperatorPrivileges
typedef [helpcontext(0x20036), helpstring("The user's operator privileges.")]
enum OperatorPrivileges{
[helpcontext(0x20036)]
opNone = 0x0,
[helpcontext(0x20036), helpstring("Print operator privilege.")]
opPrint = 0x1,
[helpcontext(0x20036), helpstring("Communications operator privilege.")]
opComm = 0x2,
[helpcontext(0x20036), helpstring("Server operator privilege.")]
opServer = 0x4,
[helpcontext(0x20036), helpstring("Accounts operator privilege.")]
opAccounts = 0x8
} OperatorPrivileges;
ActiveX UserManager classes
User, Users, Group, Server, Groups, GroupMembers, RasUser, Servers, Domain
ActiveX UserManager enums
UsersFilter, GroupAttributes, UserFlags, UserPrivileges, ServerTypes, LogonTypes, LogonProviders, OperatorPrivileges, RasPrivileges, SIDNameUse
ActiveX UserManager is easy to use COM component with classes to create, delete and manage local and remote user accounts, groups, servers and domains in the Windows NT (2000/XP) environment. You can simple work with user accounts and groups from VBA, VBS/JS, ASP and T-SQL programming environment.