标题: VBS生成随机密码
作者: Demon
链接: https://demon.tw/programming/vbs-generate-password.html
版权: 本博客的所有文章,都遵守“署名-非商业性使用-相同方式共享 2.5 中国大陆”协议条款。
本来用VBS生成随机密码这么简单的脚本我是不想发上来的,但是Google关键词“VBS 随机密码”,前三分别是:
http://hi.baidu.com/loveee/blog/item/0ba042236f5d21519822edd6.html
http://hi.baidu.com/jiangbinliu/item/2e31772d5fbd5cd60e37f92c
http://jiangbinliu.blogbus.com/logs/78380315.html
这些代码能看的么?
随机密码.vbs
赞赏'Author: Demon 'Website: https://demon.tw 'Date: 2012/6/21 Function GeneratePassword(length) Dim p, s, i, l s = "abcdefghijklmnopqrstuvwxyz" &_ "ABCDEFGHIJKLMNOPQRSTUVWXYZ" &_ "0123456789" & "!@#$%^&*()" Randomize : l = Len(s) For i = 1 To length p = p & Mid(s, Int(Rnd * l + 1) ,1) Next GeneratePassword = p End Function WScript.Echo GeneratePassword(12)
微信赞赏支付宝赞赏
随机文章:
win有类似 /dev/random 就好了
我是你提到的三个博客中后两个的博主。真是让我感慨,一晃5年过去了。谢谢你。
我同意你的观点,那个代码确实不能看……
用VBS不如用Python
你这个随机并没有保证生成的字符串 必须同时包含数字、大小写字母、特殊字符,如何确保必须同时包含?