利用vbs隐藏dos窗口详解程序员

方法一:

option explicit
dim wshshell
set wshshell=wscript.createobject(“wscript.shell”)
wshshell.run “c:/1.txt”,0,true

方法二:

option explicit

dim ws

set ws=wscript.createobject(“wscript.shell”)
ws.run “c:=/1.txt /start”,0
上述两种方法的原理是一样的,多是利用里vbs的内建对象。其中C:/1.txt为要隐藏运行的程序的绝对路径。0为隐藏,2为最小化,3最大化。

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/1246.html

(0)
上一篇 2021年7月15日
下一篇 2021年7月15日

相关推荐

发表回复

登录后才能评论