Answers for "vbscript open chrome and youtube url"

0

vbscript open chrome and youtube url

Option Explicit
Dim URL,WshShell,i
URL = "www.yahoo.com"
Set WshShell = CreateObject("WScript.shell")
For i = 0 to 50
    WshShell.SendKeys(chr(175))
Next
WshShell.run "CMD /C start chrome.exe " & URL & "",0,False
Posted by: Guest on March-29-2022

Browse Popular Code Answers by Language