vbs(脚本语言)_百度百科
https://baike.baidu.com/item/vbs/1700748?fr=aladdin
VBScript_运维_Alpssoul的博客-CSDN博客
https://blog.csdn.net/alpssoul/article/details/48766155
VBS是基于Visual Basic的脚本语言。VBS的全称是:Microsoft Visual Basic Script Edition。(微软公司可视化BASIC脚本版)。
注意文档编码需要是gbk,如果是utf8显示会乱码
hello world
hi.vbs
msgbox "Hello World !"
msgbox"HelloWorld!", , "tip"
confirm
Dim name
name=Inputbox("请输入你的名字:","名称")
Msgbox name, , "您的名字是 "
Msgbox(Inputbox("请输入你的名字:"))
calc
Dim a,b,c
a=inputbox("a是:","输入a")
b=Inputbox("b是:","输入b")
c=a+b
msgbox("结果是"+c)
Dim a,b,c,d,e
a=inputbox("a是:","输入a")
b=CDbl(a)
c=Inputbox("b是:","输入b")
d=CDbl(c)
e=b+d
msgbox("结果是"+Cstr(e))
打开记事本
Set shell = CreateObject("Wscript.Shell")
shell.Run "notepad"
shell.Run "calc"
发表评论