我以前从未使用VBS
进行编程。我只需要一个快速的记事本程序即可运行.exe
程序,并在3秒钟后将其最小化或隐藏。
我知道我可以隐藏这样的应用程序:
WShell.Run "Notepad.exe",0
但是我需要这样的东西。
Dim WShell
Set WShell = CreateObject("WScript.Shell")
WShell.Run "Notepad.exe",2
WScript.Sleep 3000
WShell.Set "Notepad.exe",0 <--------- code i came up with but doesnt work
Set WShell = Nothing
我需要再次更改窗口状态的帮助。