加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > Windows > 正文

如何检查Windows中的vbs脚本是否正在运行?

发布时间:2020-12-14 02:28:26 所属栏目:Windows 来源:网络整理
导读:我在 Windows中创建了一个VBS脚本.我将运行此脚本来获取文件的大小. 我让它永远奔跑. (即使这是我的要求). 我怎么知道它是在运行还是停止? ------ Exact Script starts here ----- Set FSO = CreateObject("Scripting.FileSystemObject") Set FSO_check=Cre
我在 Windows中创建了一个VBS脚本.我将运行此脚本来获取文件的大小.

我让它永远奔跑. (即使这是我的要求).

我怎么知道它是在运行还是停止?

------ Exact Script starts here ----- 
Set FSO = CreateObject("Scripting.FileSystemObject") 
Set FSO_check=CreateObject("Scripting.FileSystemObject") 
do while infiniteLoop=0     
----- This code is lasting for ever ----
Loop

我的问题清楚了吗?

解决方法

如何使用命令行属性?我认为这需要Windows XP及以上版本.

例如:

Set objSWbemServices = GetObject ("WinMgmts:RootCimv2") 
Set colProcess = objSWbemServices.ExecQuery _ 
("Select * From Win32_Process where name = 'wscript.exe'") 
For Each objProcess In colProcess 
    WScript.Echo objProcess.Name,_ 
    objProcess.ProcessId,_ 
    objProcess.CommandLine 
Next

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读