Error Code2 ShellExecute-ERROR
-
When I try to “run” in Chrome (the default browser) I get the above msg.
-
on some chrome installations you’ll have to state the full path to chrome.exe or else chrome can not be found automatically
workaround: edit the file shortcuts.xml in your notepad++ directory and change this line from
<Command name="Launch in Chrome" Ctrl="yes" Alt="yes" Shift="yes" Key="34">chrome "$(FULL_CURRENT_PATH)"</Command>
to
<Command name="Launch in Chrome" Ctrl="yes" Alt="yes" Shift="yes" Key="34">"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "$(FULL_CURRENT_PATH)"</Command>
or any other path your chrome.exe might be in
(you only have to change the word chrome to the full path of your chrome.exe)hope it helps
-
Sorry, I couldn’t make that solution fly. I downloaded Firefox and that browser works ok…Thanks for your suggestion…