欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用vbs实现本地添加用户的脚本

程序员文章站 2022-04-29 09:21:02
dim wshshell set wshshell = createobject("wscript.shell") wshshell...
dim wshshell
set wshshell = createobject("wscript.shell")
wshshell.run "cmd /k"
for i = 1 to 3
wscript.sleep 500
wshshell.sendkeys "net user admin" & i & " abcd@123 /add"
wshshell.sendkeys "{enter}"
next
wshshell.sendkeys "exit"
wshshell.sendkeys "{enter}"