So the following opens a new browser window when I put it in cmd manually:
cd C:/Program Files (x86)/Google/Chrome/Application&chrome.exe
However, when I tried to do this via a java program (see below), the command prompt opens and goes to the correct directory, but no new window opens. Any ideas of what I need to change?
Runtime rt = Runtime.getRuntime();
rt.exec("cmd.exe /c start cd C:/Program Files (x86)/Google/Chrome/Application&chrome.exe");