WshShell.Run strCommand, [intWindowStyle], [bWaitOnReturn]
Here’s an example:
Set objWshShell = WScript.CreateObject("WScript.Shell")objWshShell.Run "Control.exe Inetcpl.cpl", 1, True
This Run method launches Control Panel’s Internet Properties dialog box.