I am doing a blazor server application which is launch the application that is launched in the user's local machine.
Note this is an internal application that uses Windows Authentication. We are using modern browers edge, chrome, firefox.
ActiveXObject won't work with this one. What is the best option to launch an exe.
I tried System.Diagnostics.Process.Start("userdesktopApplication.exe") the problem is that the application starts from the server and I need to start the application from the client machine that is invoking the web address.
Thank you in advance.