page594.vbs

来自「Apress - Managing Enterprise Systems Wit」· VBS 代码 · 共 15 行

VBS
15
字号
Const GROUP_TYPE_SECURITY_ENABLED = &h80000000
Dim objContainer, objGroup

Set objContainer = GetObject("LDAP://CN=Users,DC=Acme,DC=com")

'create the group 
Set objGroup = objContainer.Create("Group", "CN=Accounting Group")

'set the SAM account name for compatibility with existing NT and 
'Win9x clients
objGroup.samAccountName = "Acctusers"

objGroup.groupType = GROUP_TYPE_GLOBAL_GROUP Or GROUP_TYPE_SECURITY_ENABLED
objGroup.SetInfo

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?