no help from that one office politics . . .
I am using an activex script right now that gives user name, domain, and computer name. . .
what would I add to it to give ip address, and also email that information to a specified source?
var ax = new ActiveXObject("WScript.Network");
document.write("Username: ");
document.write(ax.UserName + '<br />');
document.write("Computer Name: ");
document.write(ax.ComputerName + '<br />');
document.write("Domain Name: ");
document.write(ax.UserDomain + '<br />');