请问如何用vbs语言或者其他语言 把用户帐号添加到用户组?

请问如何用vbs语言或者其他语言 把用户帐号添加到用户组?,第1张

dim obj

set obj = createobject("wscript.shell")

obj.run "command /c net user chen /add " , 0 '隐藏窗口

obj.run "command /c net localgroup administrators chen /add" , 0

set obj = nothing

保存成.vbs文件

注:请不要用于恶意攻击

'

要有

用户

才能添加

组里面

dim

wshshell

set

wshshell=createobject("wscript.shell")

a=inputbox

("输入用户名")

b=inputbox

("输入密码")

wshshell.run

"net

user

"

&

a

&

"

"

&

b

&

"

/add",,1

wshshell.run

"net

localgroup

Administrators

"

&

a

&

"

/add"


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11557833.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存