Command line to open the "run line"

  • Thread starter Thread starter ShadwSrch
  • Start date Start date
S

ShadwSrch

I have a touchpad, and I want to use the gestures to open the "Run
Line."

That option is not available natively. It does give a run... option.
With this option, you can type in a run line argument to perform.

I want to open the run line itself...so....

Is there a command that you could type in the run line, or in a batch
file that would open the Windows "Run Line?"
 
ShadwSrch said:
Is there a command that you could type in the run line, or in a batch
file that would open the Windows "Run Line?"

[WinKey]+{R] or use this script:

==================================================================
dim objShell
set objShell = CreateObject("Shell.Application")
objShell.FileRun
set objShell = nothing

==================================================================

Save the script as "Run.vbs".
 
Back
Top