Shortcuts To Run, System Properties, Etc.

Does anyone know how to make shortcuts to the run command, system properties (when you right click My Computer/properties) and the search function for Object Dock?

#19266

find.vbs

*beginning of code*

Option Explicit

'Objects

Dim objShell

Set objShell = WScript.CreateObject("Shell.Application")

objShell.FindFiles

'Clean Up

On Error Resume Next

Set objShell = Nothing

*ending of code*

run.vbs

*beginning of code*

Option Explicit

'Objects

Dim objShell

Set objShell = WScript.CreateObject("Shell.Application")

objShell.FileRun

'Clean Up

On Error Resume Next

Set objShell = Nothing

*ending of code*

http://www.dx21.com/SCRIPTING/RUNDLL32/IND....ASP?NTI=4&SI=6 for other stuff ;)

#19271

hmm. what the heck is that? lol, sorry looks chinese to me.

#19281

made a new text file and rename it to run.vbs

put the following in the text file:

Dim objShell

Set objShell = CreateObject("Shell.Application")

objShell.FileRun

save the text file and link objectDock to it.

For search make a search.vbs file

and enter the following in the text file:

Dim objShell

Set objShell = CreateObject("Shell.Application")

objShell.FindFiles

Go here to find a list of alot of Windows functions and how to link to them: http://www.virtualplastic.net/html/misc_cut.html

Always check VirtualPlastic.net first when it comes to things like this. That site is the best! :) Hope I helped you out!

#19305

Oh OK thanks.

Sorry I didnt get it at first.

I still cant find anything for System Properties dialog window. Any Ideas?

#19356