Get the Computer Name Using Javascript/Jquery

user2979432 picture user2979432 · Oct 10, 2017 · Viewed 9.6k times · Source

I want to get the computer name using jquery. I tried using ActiveX Object but it will only run on IE browser. Is there is another way to get the computer name using jquery. I tried that code.

 var network = new ActiveXObject('WScript.Network');  
 alert(network.computerName); 

Can u any one help me..

Answer

user149341 picture user149341 · Oct 10, 2017

You can't. This information is not available to web sites.

The ActiveX approach outlined in your question won't even work in current versions of Internet Explorer, as the WScript.Network ActiveX object is not marked as safe for scripting.