keeskas 0 Posted March 21, 2005 I use runasset to run a .vbs, this vbs prompt the user for some input. problem is that a cmd box opens while the vbs is running, is there a way to hide this cmd box? Greetings Kees Share this post Link to post Share on other sites
MHz 80 Posted March 21, 2005 $title = 'Command' Opt("WinTitleMatchMode", 2) WinWait($title) WinSetState($title, '', @SW_HIDE) Use WinSetState to hide it. Can change the value to suit. The Opt() allows for part of the title name. Share this post Link to post Share on other sites