Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Learn More

Username variable in policy templates or in about:config

  • 1 svar
  • 0 har detta problem
  • 18 visningar
  • Senaste svar av 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!

Alla svar (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;
}