vbs在网页中显示服务
程序员文章站
2022-06-23 21:10:37
strcomputer = "."
set objexplorer = wscript.createobject("internetexplorer.applicatio...
strcomputer = "."
set objexplorer = wscript.createobject("internetexplorer.application")
objexplorer.navigate "about:blank"
objexplorer.toolbar = 0
objexplorer.statusbar = 0
objexplorer.visible = 1
set objwmiservice = getobject _
("winmgmts:\\" & strcomputer & "\root\cimv2")
set colitems = objwmiservice.execquery _
("select * from win32_service")
for each objitem in colitems
strhtml = strhtml & objitem.displayname & " = " & objitem.state & "<br>"
next
objexplorer.document.body.innerhtml = strhtml
上一篇: 微信扫码支付(PC端)
下一篇: 修改 Gateway和DNS的vbs脚本
推荐阅读
-
php中使用GD2库创造图形在浏览器中显示不出来
-
在PHP中利用XML技术构造远程服务(1)
-
关于在HTML表格中插入背景图片图片重复显示的问题_html/css_WEB-ITnose
-
在PHP的图形函数中显示汉字_php基础
-
php 怎么让office文档和pdf文件直接显示在网页中
-
PS网页设计教程III——在Photoshop中设计优雅的网站布局设计
-
解决ExtJS在chrome或火狐中正常显示在ie中不显示的浏览器兼容问题_extjs
-
这段php为何执行完了才在html中显示
-
网页中多个图标在一张图片上,使用css将各图标显示_html/css_WEB-ITnose
-
在Qtlabel中显示数字十六进制和十进制都可以