I made a program with Visual Studio and I managed to open it using an href in my Angular page, how can I know if the user has installed it when the page is trying to open it using href=program: ? Im trying to alert the user by downloading the installer if is not installed. I used:
window.location.href = "program:"+id;
I see the popup asking to open my software, but I need to know if this popup appears or not so I can fire the download function. Any help?