I was originally trying to force my shiny apps to launch in Edge
options(browser = "C:/Windows/SystemApps/Microsoft.MicrosoftEdge_8wekyb3d8bbwe/MicrosoftEdge.exe")
runApp(shinyApp(ui, server))
Furthermore, I can't even launch Microsoft Edge from windows command line using this path to the exe, but instead, you have to use this in the command line:
start microsoft-edge:
But then you can't use R's system()
to launch edge this way:
> system("start microsoft-edge:")
Warning message:
running command 'start microsoft-edge:' had status 127
Any ideas on how to use Microsoft edge with R?