手机
当前位置:查字典教程网 >脚本专栏 >vbs >VBS中解决带空格路径的三种方法
VBS中解决带空格路径的三种方法
摘要:方法一:Setwshell=CreateObject("WScript.Shell")wshell.Run"""C:ProgramFiles...

方法一:

Set wshell=CreateObject("WScript.Shell") wshell.Run """C:Program Files360360se360se.exe""",5,True Set wshell = Nothing

方法二:

temp="C:Program Files360360se3360se.exe" path = Chr(34) & temp & Chr(34) Set wshell=CreateObject("WScript.Shell") wshell.Run path,1,True Set wshell = Nothing

方法三:

Public Const vbQuote = """" temp="C:Program Files360360se3360se.exe" path = vbQuote & temp & vbQuote Set wshell=CreateObject("WScript.Shell") wshell.Run path,1,True Set wshell = Nothing

【VBS中解决带空格路径的三种方法】相关文章:

VBS下载文件的新方法

VBS中常用脚本代码

VBS读取注册表的两种方法

vbs 解析html文档的方法(htmlfile)

VBS创建正则表达式对象的两种方法

Vbscript写注册表的方法

关于phpwind克隆用户的方法

VBS和页面中响应COM的事件的方法和代码

VBS加密与VBE解密实现方法

VBScript开发自动化测试脚本的方法分析

精品推荐
分类导航