how to start up a desktop application in client side

后端 未结 6 1449
迷失自我
迷失自我 2020-11-27 18:24

In my web page, I have to start a desktop application on the client\'s computer if it\'s installed. Any idea how I can do this?

If the application is MS Office or Ad

6条回答
  •  暗喜
    暗喜 (楼主)
    2020-11-27 18:46

    Basically it's not possible to achieve unless an application registers a protocol that will trigger it. If it does that all you need to do is to provide a link using this protocol

    yourcustomapp://some.parameters

    Another way the 3rd party app can integrate with the browser is if it hooks to it as a plugin. This is how flash apps work etc.

    If the app you are trying to launch does not support something like that it's going to be close to impossible to achieve what you want.

提交回复
热议问题