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?
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?
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)