cwhiii
cwhiii

Reputation: 1536

How to get Windows username in a legacy (not WebExtensions) Firefox add-on?

I am working a Firefox add-on (which is written in JavaScript) and need to determine the Windows user currently logged on. Is there a way to do this?

Upvotes: 25

Views: 79073

Answers (5)

rashid
rashid

Reputation: 57

Following code works for me instead of onload event with function calling:

var objUserInfo = new ActiveXObject("WScript.network");
document.write(objUserInfo.ComputerName+"<br>"); 
document.write(objUserInfo.UserDomain+"<br>"); 
document.write(objUserInfo.UserName+"<br>");  
var uname =  objUserInfo.UserName;
alert(uname);

Upvotes: 4

GitaarLAB
GitaarLAB

Reputation: 14655

Firefox already has Integrated Authentication built-in (many people don't know that).
See: https://developer.mozilla.org/en-US/docs/Integrated_Authentication

Here is a Popular Firefox addon that eases the configuration: https://addons.mozilla.org/nl/firefox/addon/integrated-auth-for-firefox/

Here is some extra explanation:
http://justgeeks.blogspot.nl/2011/01/firefox-supports-integrated-windows.html

Good luck!

Upvotes: 2

cwhiii
cwhiii

Reputation: 1536

This does the trick on Windows:

function getUser() {
   return Components.classes["@mozilla.org/process/environment;1"].getService(Components.interfaces.nsIEnvironment).get('USERNAME');
}      

Upvotes: 9

carny666
carny666

Reputation: 2430

<html>
<head>
    <script language="javascript">
        function GetUserName()
        {
            var wshell = new ActiveXObject("WScript.Shell");
            alert(wshell.ExpandEnvironmentStrings("%USERNAME%"));
        }
    </script>
</head>
<body OnLoad="GetUserName();">
</body>
</html>

Upvotes: -2

You can use nsIEnvironment interface to get USERNAME environmnet variable.

Upvotes: 5

Related Questions