I'm trying to open the Chrome browser using a .vbs file (below); it didn't work, I'm getting getting error A0401: expected end of statement
I need to trigger the Chrome browser with --diable -web -security
using VB Script.
Dim StrURL
Dim ObjhShell
StrURL="http://localhost:7171/"
Set ObjShell = CreateObject("Wscript.Shell")
'ObjShell.Run ""C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-web-security"
ObjShell.Run "chrome.exe --user-data-dir="C://Chrome dev session" --disable-web-security"