Icon for 'Run' command

  • Thread starter Thread starter Louisa Bird
  • Start date Start date
L

Louisa Bird

Does anyone know if it is possible to create an icon that
links to the Windows 'Run' command?
 
In
Louisa Bird said:
Does anyone know if it is possible to create an icon that
links to the Windows 'Run' command?

not so much an icon but if you press the Windows key [1] and R on
your keyboard it opens the run dialogue

[1] the key between CTRL and ALT with the Windows icon on it
 
You could create a .vbs file with contents like below, create a shortcut to
it, and give it the icon of your choice:


run.vbs:


Dim oShell
On Error Resume Next
Set oShell = CreateObject("Shell.Application")
oShell.FileRun
Set oShell = Nothing

Ray at work
 
Back
Top