flALL = &H0 | 0 | Enumerates all account types. |
flTEMP_DUPLICATE_ACCOUNTS = &H1 | 1 | Enumerates local user account data on a domain controller. |
flNORMAL_ACCOUNT = &H2 | 2 | Enumerates domain trust account data on a domain controller. |
flPROXY_ACCOUNT = &H4 | 4 | |
flINTERDOMAIN_TRUST_ACCOUNT = &H8 | 8 | Enumerates global user account data on a computer. |
flWORKSTATION_TRUST_ACCOUNT = &H10 | 16 | Enumerates workstation or member server account data on a domain controller. |
flSERVER_TRUST_ACCOUNT = &H20 | 32 | Enumerates domain controller account data on a domain controller. |
VBS include
'UsersFilter - begin
Public Const flALL = &H0 'Enumerates all account types.
Public Const flTEMP_DUPLICATE_ACCOUNTS = &H1 'Enumerates local user account data on a domain controller.
Public Const flNORMAL_ACCOUNT = &H2 'Enumerates domain trust account data on a domain controller.
Public Const flPROXY_ACCOUNT = &H4
Public Const flINTERDOMAIN_TRUST_ACCOUNT = &H8 'Enumerates global user account data on a computer.
Public Const flWORKSTATION_TRUST_ACCOUNT = &H10 'Enumerates workstation or member server account data on a domain controller.
Public Const flSERVER_TRUST_ACCOUNT = &H20 'Enumerates domain controller account data on a domain controller.
'UsersFilter - end
VB4 include
'UsersFilter - begin
Public Const flALL As Long = &H0 'Enumerates all account types.
Public Const flTEMP_DUPLICATE_ACCOUNTS As Long = &H1 'Enumerates local user account data on a domain controller.
Public Const flNORMAL_ACCOUNT As Long = &H2 'Enumerates domain trust account data on a domain controller.
Public Const flPROXY_ACCOUNT As Long = &H4
Public Const flINTERDOMAIN_TRUST_ACCOUNT As Long = &H8 'Enumerates global user account data on a computer.
Public Const flWORKSTATION_TRUST_ACCOUNT As Long = &H10 'Enumerates workstation or member server account data on a domain controller.
Public Const flSERVER_TRUST_ACCOUNT As Long = &H20 'Enumerates domain controller account data on a domain controller.
'UsersFilter - end
VB5 include
Public Enum UsersFilter
flALL = &H0 'Enumerates all account types.
flTEMP_DUPLICATE_ACCOUNTS = &H1 'Enumerates local user account data on a domain controller.
flNORMAL_ACCOUNT = &H2 'Enumerates domain trust account data on a domain controller.
flPROXY_ACCOUNT = &H4
flINTERDOMAIN_TRUST_ACCOUNT = &H8 'Enumerates global user account data on a computer.
flWORKSTATION_TRUST_ACCOUNT = &H10 'Enumerates workstation or member server account data on a domain controller.
flSERVER_TRUST_ACCOUNT = &H20 'Enumerates domain controller account data on a domain controller.
End Enum 'UsersFilter
JScript include
//UsersFilter - begin
var flALL = 0x0; //Enumerates all account types.
var flTEMP_DUPLICATE_ACCOUNTS = 0x1; //Enumerates local user account data on a domain controller.
var flNORMAL_ACCOUNT = 0x2; //Enumerates domain trust account data on a domain controller.
var flPROXY_ACCOUNT = 0x4;
var flINTERDOMAIN_TRUST_ACCOUNT = 0x8; //Enumerates global user account data on a computer.
var flWORKSTATION_TRUST_ACCOUNT = 0x10; //Enumerates workstation or member server account data on a domain controller.
var flSERVER_TRUST_ACCOUNT = 0x20; //Enumerates domain controller account data on a domain controller.
//UsersFilter - end
IDL include
// UsersFilter
typedef [helpcontext(0x20008), helpstring("The list of Users Filter")]
enum UsersFilter{
[helpcontext(0x20008), helpstring("Enumerates all account types.")]
flALL = 0x0,
[helpcontext(0x20008), helpstring("Enumerates local user account data on a domain controller.")]
flTEMP_DUPLICATE_ACCOUNTS = 0x1,
[helpcontext(0x20008), helpstring("Enumerates domain trust account data on a domain controller.")]
flNORMAL_ACCOUNT = 0x2,
[helpcontext(0x20008)]
flPROXY_ACCOUNT = 0x4,
[helpcontext(0x20008), helpstring("Enumerates global user account data on a computer.")]
flINTERDOMAIN_TRUST_ACCOUNT = 0x8,
[helpcontext(0x20008), helpstring("Enumerates workstation or member server account data on a domain controller.")]
flWORKSTATION_TRUST_ACCOUNT = 0x10,
[helpcontext(0x20008), helpstring("Enumerates domain controller account data on a domain controller.")]
flSERVER_TRUST_ACCOUNT = 0x20
} UsersFilter;
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.