how to make chrome the default browser when Running?

yassiir

New Member
i looked everywhere to switch from iexplorer to chrome but couldn't find anything. please help
thank you
 

Sathish183

New Member
thank you for your reply, but chrome is already my default browser, the problem is when i run my process from NICE it launchs internet explorer

Hi Yasir,

Use the inbuilt EXECUTE Command Function to launch chrome.exe and give the URL u want to launch as parameter.
 

Zubair

Member
I found a useful answer online which helps with using chrome with command line, I will share the solution. (This is for launching chrome using the CMD command in NICE)

Let's take a look at the start command.
Open Windows command prompt
To open a new Chrome window (blank), type the following:
start chrome --new-window

or
start chrome

To open a URL in Chrome, type the following:
start chrome --new-window "http://www.iot.qa/2018/02/narrowband-iot.html"

To open a URL in Chrome in incognito mode, type the following:
start chrome --new-window --incognito "http://www.iot.qa/2018/02/narrowband-iot.html"

or
start chrome --incognito "http://www.iot.qa/2018/02/narrowband-iot.html"
 
Top