Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Username variable in policy templates or in about:config

  • 1 件の返信
  • 0 人がこの問題に困っています
  • 18 回表示
  • 最後の返信者: cor-el

more options

I'm trying to set the download location to a different drive, containing the current username. For example, if my username is Brett.Michaels, I want my default download directory to be G:\brett.michaels. Other browsers have a variable that is usable like {user_name} however I can only find reference to {home} for Firefox, which does not allow me to alter the drive. I've tried using Windows-based environment variables to no avail. Perhaps I'm missing something?

Thanks!

I'm trying to set the download location to a different drive, containing the current username. For example, if my username is Brett.Michaels, I want my default download directory to be G:\brett.michaels. Other browsers have a variable that is usable like {user_name} however I can only find reference to {home} for Firefox, which does not allow me to alter the drive. I've tried using Windows-based environment variables to no avail. Perhaps I'm missing something? Thanks!

すべての返信 (1)

more options

The getenv() function is one of the available function for the autoconfig.cfg, you can't do this via about:config. There is no mention that it can be used with a policy.


function getenv(name) {
  try {
    return Services.env.get(name);
  } catch (e) {
    displayError("getEnvironment", e);
  }
  return undefined;
}