L Louisa Bird Nov 4, 2003 #1 Does anyone know if it is possible to create an icon that links to the Windows 'Run' command?
S Steve Parry [MVP] Nov 4, 2003 #2 In Louisa Bird said: Does anyone know if it is possible to create an icon that links to the Windows 'Run' command? Click to expand... 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
In Louisa Bird said: Does anyone know if it is possible to create an icon that links to the Windows 'Run' command? Click to expand... 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
R Ray at Nov 4, 2003 #3 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
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