标签:
VBScript是Visual Basic Script的简称,即 Visual Basic 脚本语言,有时也被缩写为VBS。它是一种微软环境下的轻量级的解释型语言,它使用COM组件、WMI、WSH、ADSI访问系统中的元素,对系统进行管理。同时它又是asp动态网页默认的编程语言,配合asp内建对象和ADO对象,用户很快就能掌握访问数据库的asp动态网页开发技术。
1)弹出Wiindows窗口
新建一个文件 test1.vbs,
MsgBox "hello"
在控制台通过命令调用vbs脚本
call test1.vbs
2)打印电脑位数(32位,64位)
新建一个文件 test2.vbs,
MsgBox "computer Type=" + GetComputerType Function GetComputerType() On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_ComputerSystem",,48) Dim result For Each objItem in colItems If InStr(objItem.SystemType, "86") <> 0 Then result = "x86" ElseIf InStr(objItem.SystemType, "64") <> 0 Then result = "x64" Else result = objItem.SystemType End If Next GetComputerType = result End Function
在控制台通过命令调用vbs脚本
call test1.vbs
标签:
原文地址:http://www.cnblogs.com/wangshuo1/p/5874821.html