Question

Is there a way to retrieve system information like MAC Address, computer name, etc. from the host PC using jQuery?

Was it helpful?

Solution

No, luckily not.

OTHER TIPS

Try this http://www.webdeveloper.com/forum/showthread.php?t=134120

var strComputer = ".";
var objWMIService = GetObject("winmgmts:\\\\" + strComputer + "\\root\\cimv2");
var e = new Enumerator(objWMIService.ExecQuery("Select * from Win32_NetworkAdapter","WQL",48));

for (;!e.atEnd();e.moveNext())
{   objItem = e.item();
    WScript.Echo ("MACAddress: " + objItem.MACAddress)
}

I faces This Problem, I solved it by create Applet using signed Jar grant him all the permission,but in java script and jquery there is only activex but it works on ie in the other browser it's not working.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top