码迷,mamicode.com
首页 > Web开发 > 详细

HTML5学习总结-番外01 VBScript知识

时间:2016-09-15 15:05:16      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

1  VBScript 

  VBScript是Visual Basic Script的简称,即 Visual Basic 脚本语言,有时也被缩写为VBS。它是一种微软环境下的轻量级的解释型语言,它使用COM组件、WMI、WSH、ADSI访问系统中的元素,对系统进行管理。同时它又是asp动态网页默认的编程语言,配合asp内建对象和ADO对象,用户很快就能掌握访问数据库的asp动态网页开发技术。

2 实验

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

 

HTML5学习总结-番外01 VBScript知识

标签:

原文地址:http://www.cnblogs.com/wangshuo1/p/5874821.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!