Command line to open the "run line"

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?"
 
D

Detlev Dreyer

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".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top