要使用VBScript关闭所有Chrome标签,您可以使用以下脚本:
Dim objShell, objWindows, objWindow
Dim strClassName, strWindowTitle
Set objShell = CreateObject("Shell.Application")
Set objWindows = objShell.Windows
For Each objWindow In objWindows
strClassName = objWindow.FullName
strWindowTitle = objWindow.Document.Title
If InStr(strClassName, "chrome.exe") <> 0 Then
objWindow.Quit
End If
Next
这个脚本将遍历所有打开的窗口,检查它们的类名是否包含"chrome.exe"。如果是,则关闭该窗口。
领取专属 10元无门槛券
手把手带您无忧上云