问题
I want a .vbs file that opens the Start Menu.
Can someone give me a code that opens Start Menu, that works with Windows 8.1/10?
回答1:
Something like that : a vbsript for opening the Start Menu
Dim WSHShell
Set WSHShell = WScript.CreateObject("WScript.Shell")
WshShell.SendKeys "^{ESC}"
Set WSHShell = Nothing
WScript.Quit(0)
来源:https://stackoverflow.com/questions/48803544/how-to-open-start-menu-with-vbscript