嗨,我是 vbscript 的新手,找不到任何有关如何检测创建的对象何时关闭的信息。
我有以下代码:
Set objExplorer = CreateObject("InternetExplorer.Application")
Set WshShell = Wscript.CreateObject("WScript.Shell")
objExplorer.Navigate "//IDM/jsps/login/Login.jsf"
objExplorer.Visible = true
objExplorer.ToolBar = false
objExplorer.MenuBar = false
objExplorer.StatusBar = false
objExplorer.AddressBar = false
objExplorer.Width = 1000
objExplorer.Height = 600
objExplorer.Resizable = false
我试图在 ie 关闭时让 Windows 注销,我有以下代码可以注销哪些工作,我如何在 ieclose 上调用它?
WshShell.Run "C:\windows\system32\shutdown.exe /l",
谢谢