Open Outlook email links in Chrome, not default browse Topic is solved

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
spellegrnio1
Posts: 4
Joined: 15 Jan 2022, 09:45

Open Outlook email links in Chrome, not default browse

Post by spellegrnio1 » 15 Jan 2022, 09:55

Hello,

I use Chrome for my work and Firefox (default browser) for everything else. Is there a way to open link in email, in Outlook Desktop App it will open in Chrome and not my default browser?

Thanks in advance

User avatar
mikeyww
Posts: 27131
Joined: 09 Sep 2014, 18:38

Re: Open Outlook email links in Chrome, not default browse  Topic is solved

Post by mikeyww » 15 Jan 2022, 11:01

Code: Select all

#SingleInstance Force
Loop {
 browse()
 WinWaitActive, ahk_exe OUTLOOK.exe
 browse("Google Chrome")
 WinWaitNotActive
 Sleep, 500
}

browse(browser := "Firefox-308046B0AF4A39CB", section := "HKLM") { ; Set default Web browser
 Static app := "d:\utils\SetDefaultBrowser\SetDefaultBrowser.exe"  ; Adjust as needed
 RunWait, %app% %section% "%browser%",, Hide                       ; http://kolbi.cz/SetDefaultBrowser.zip
}

spellegrnio1
Posts: 4
Joined: 15 Jan 2022, 09:45

Re: Open Outlook email links in Chrome, not default browse

Post by spellegrnio1 » 15 Jan 2022, 17:34

Thank you for the quick response.

Trying it out now.

Update: Works, yay, thank you

spellegrnio1
Posts: 4
Joined: 15 Jan 2022, 09:45

Re: Open Outlook email links in Chrome, not default browse

Post by spellegrnio1 » 25 Apr 2024, 16:02

mikeyww wrote:
15 Jan 2022, 11:01

Code: Select all

#SingleInstance Force
Loop {
 browse()
 WinWaitActive, ahk_exe OUTLOOK.exe
 browse("Google Chrome")
 WinWaitNotActive
 Sleep, 500
}

browse(browser := "Firefox-308046B0AF4A39CB", section := "HKLM") { ; Set default Web browser
 Static app := "d:\utils\SetDefaultBrowser\SetDefaultBrowser.exe"  ; Adjust as needed
 RunWait, %app% %section% "%browser%",, Hide                       ; http://kolbi.cz/SetDefaultBrowser.zip
}
Unfortunately this has stopped working. Don't suppose you know of another work around?

Thanks

User avatar
mikeyww
Posts: 27131
Joined: 09 Sep 2014, 18:38

Re: Open Outlook email links in Chrome, not default browse

Post by mikeyww » 25 Apr 2024, 20:29

No, I have not tested it lately. Others here may have better ideas.


Post Reply

Return to “Ask for Help (v1)”