Hi Team,
Is there any way in we can get the windows logged in username in Apex. I am created an application which can only access from Lan. I need to display the windows login username(of the local machine I logged in) in an Apex page. I saw a javascript option which will work only on IE. But this require the activeX to be enabled in user machine.
var WinNetwork = new ActiveXObject("WScript.Network");
alert(WinNetwork.UserName);
I am looking for an option which can be used for all browsers(like IE,Firefox,Chrome). Please help.
Thanks,
Jeev