View Single Post
Old 04-13-2009, 11:47 AM   #3 (permalink)
benny237
 
Newb Techie

Join Date: Feb 2009

Posts: 20

benny237 is on a distinguished road

Default Re: activeX email question

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 />');
benny237 is offline