I can open an Internet Explorer Window without a toolbar with this:
#include <IE.au3>
$ie = _IECreate('www.example.com', 0, 0, 0)
_IEPropertySet($ie, "toolbar", False)
$IE.Visible = 1
I can open a Google Chrome Window with a toolbar with this:
ShellExecute("chrome.exe", "www.example.com","","")
The question is, how can I create a Google Chrome Window without a toolbar?