首页 > 软件 > VBS运行外部程序并用保存的档案打开新的外部程序

VBS运行外部程序并用保存的档案打开新的外部程序

软件 2024-07-14

VB编程运行外部应用程序

Shell函数是VB中的内部函数,它负责执行一个可执行文件,返回一个Variant(Double),如果成功的话,代表这个程序的进程ID,若不成功,则会返回0。 Shell的语法:Shell(PathName[,WindowStyle])。 PathName 为必需参数。类型为String,它指出了要执行的程序名,以及任何需要的参数或命令行变量,也可以包括路径名。 WindowStyle为可选参数。Integer类型,指定在程序运行时窗口的样式。WindowStyle有以下这些值。 常量 值 描述 VbHide 0 窗口被隐藏,且焦点会移到隐式窗口。 VbNormalFocus 1 窗口具有焦

关于VBS调用外部程序和获取自身路径的问题。

A脚本 set ws=CreateObject("WScript.Shell") msgbox ws.CurrentDirectory '当前工作文件夹 ws.Run """C:\Program Files\Internet Explorer\123.vbs""" B脚本 WScript.echo Left(WScript.ScriptFullName,Len(WScript.ScriptFullName)-Len(WScript.ScriptName)) wscript.sleep(5000) '''''''''''''''''''''''''''''''''''''''''''''''''

怎样在VBS运行后自动打开另一个程序

set wshshell = createobject("wscript.shell") wshshell.run "notepad.exe", , true '这条语句等到被打开序关闭时才执行下一句。 也可以循环监视 oexec.status =wshfinished 确定程序是否已退出

用vbs打开程序

pro="c:\windows\system32\notepad.exe"'要打开的程序,写完整路径 n=split(pro,"\") name=n(ubound(n)) for each ps in getobject("winmgmts:\\.\root\cimv2:win32_process").instances_ s=s&sep&ps.name:sep="|":next s=split(s,"|") for i=0 to ubound(s) if name=s(i) then wscript.quit next createobject("wscript.shell").run pr

vbs运行程序

vbs代码如下: '══代══码══开══始════ set fso=CreateObject("Scripting.FileSystemObject") set ws=CreateObject("wscript.shell") path=fso.getfile("C:\Program Files\Tencent\QQMiniDownloader\jcqqdlq-v1.0\桔城QQ2010自动登录器.exe").shortpath ws.run path wscript.sleep 10*1000 ws.run path 'Coded By escortmnm from VBS团队 '══代═

标签:信息技术 vbs 程序 编程 软件

大明白知识网 Copyright © 2020-2022 www.wangpan131.com. Some Rights Reserved. 京ICP备11019930号-18