Is there a solution to detect if the Lync-Addon is installed and active in my Internet Explorer using Javascript?
I know how to detect an Addon like Adobe Reader:
try {
new ActiveXObject("AcroPDF.PDF");
alert("Adobe Reader is installed");
} catch (err) {
alert("Adobe Reader is not installed - " + err);
}
But i dont know how i can detect the Lync-Addon. Is there an ActiveX-Object like the Adobe Reader one?
Thanks in advance and sorry for my bad english im not a native speaker.