So i got a c# desktop app that i wrote over in a website as well. I want to add a button in the login screen to give users the option to open the desktop application.. i am willing to write plugins if needed i just don't know where to start with this i know that Team speak did this as u can go and see on www.forcekillers.com so i know that it is possible.
if have tried what i could find on the web without success here is an example i got to open notepad but also does not work.
<script>
$(document).on('click', '#butWindowsApp', function (e) {
var win_app = new ActiveXObject("WScript.shell");
win_app.run("notepad.exe", 1, True);
});
</script>
Thanks in advanced