How to open Start Menu with VBScript?

人走茶凉 提交于 2021-02-08 12:13:24

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!