Sykje yn Support

Mij stipescams. Wy sille jo nea freegje in telefoannûmer te beljen, der in sms nei ta te stjoeren of persoanlike gegevens te dielen. Meld fertochte aktiviteit mei de opsje ‘Misbrûk melde’.

Learn More

Dizze konversaasje is argivearre. Stel in nije fraach as jo help nedich hawwe.

Username variable in policy templates or in about:config

  • 1 antwurd
  • 0 hawwe dit probleem
  • 18 werjeftes
  • Lêste antwurd fan 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!

Alle antwurden (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;
}