Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Ovo će web mjesto raditi na ograničen način, dok obavljamo održavanje stranice. Ako neki članak ne riješi tvoj problem i ako želiš postaviti pitanje, naša zajednica za podršku spremna je pomoći na Twitteru @FirefoxSupport i na Redditu /r/firefox.

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Saznaj više

Silently Import Bookmarks from IE to Firefox

  • 5 odgovora
  • 1 ima ovaj problem
  • 1 prikaz
  • Posljednji odgovor od Reod_Dai97

more options

I am in an enterprise environment with over 500 machines, and we are looking for a way to import users Bookmarks from IE to Firefox silently and behind the scenes without requiring user interaction.

Due to security restrictions 3rd party software is not a possibility. Most users have already been using Firefox. We do not want to delete their existing bookmarks in Firefox

I am in an enterprise environment with over 500 machines, and we are looking for a way to import users Bookmarks from IE to Firefox silently and behind the scenes without requiring user interaction. Due to security restrictions 3rd party software is not a possibility. Most users have already been using Firefox. We do not want to delete their existing bookmarks in Firefox

Izabrano rješenje

So to do this, you'll need to use Autoconfig. You can read more about it here:

https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig

Create a file called autoconfig.js and put it in the defaults/pref directory where Firefox is installed.

autoconfig.js pref("general.config.filename", "firefox.cfg"); pref("general.config.obscure_value", 0); pref("general.config.sandbox_enabled", false);

Then create a file called firefox.cfg where Firefox is installed.

firefox.cfg // const {classes: Cc, interfaces: Ci, utils: Cu} = Components;

let migratedBookmarks = true;

try {

 migratedBookmarks = getPref("bookmarks.migrated.ie");

} catch (e) {}

if (!migratedBookmarks) {

 Cu.import("resource:///modules/MigrationUtils.jsm");
 MigrationUtils.getMigrator("ie").then((migrator) => {
   migrator.migrate(Ci.nsIBrowserProfileMigrator.BOOKMARKS, null, null);
 });
 pref("bookmarks.migrated.ie", true);

}

This code will import bookmarks from IE and then set a pref saying they were imported so it only happens once.

Pročitaj ovaj odgovor u kontekstu 👍 0

Svi odgovori (5)

more options

I'm looking into this.

more options

Mike Kaply said

I'm looking into this.

I'm guessing no Luck?

more options

It's on my very long list. Still looking.

more options

Odabrano rješenje

So to do this, you'll need to use Autoconfig. You can read more about it here:

https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig

Create a file called autoconfig.js and put it in the defaults/pref directory where Firefox is installed.

autoconfig.js pref("general.config.filename", "firefox.cfg"); pref("general.config.obscure_value", 0); pref("general.config.sandbox_enabled", false);

Then create a file called firefox.cfg where Firefox is installed.

firefox.cfg // const {classes: Cc, interfaces: Ci, utils: Cu} = Components;

let migratedBookmarks = true;

try {

 migratedBookmarks = getPref("bookmarks.migrated.ie");

} catch (e) {}

if (!migratedBookmarks) {

 Cu.import("resource:///modules/MigrationUtils.jsm");
 MigrationUtils.getMigrator("ie").then((migrator) => {
   migrator.migrate(Ci.nsIBrowserProfileMigrator.BOOKMARKS, null, null);
 });
 pref("bookmarks.migrated.ie", true);

}

This code will import bookmarks from IE and then set a pref saying they were imported so it only happens once.

more options

Hello Mike,

This worked, thank you. Also thank you for referencing the page with the AutoConfig information as I quite like the idea of being able to Centrally manage the file if needed.

1) Create a file called autoconfig.js The text in the Autoconfig.js file is: pref("general.config.filename", "firefox.cfg"); pref("general.config.obscure_value", 0); pref("general.config.sandbox_enabled", false);

2) Copy the autoconfig.js file to: "\\%pcname%\c$\Program Files\Mozilla Firefox\defaults\pref\autoconfig.js"

3) Create a file called firefox.cfg This is the text in the firefox.cfg file // const {classes: Cc, interfaces: Ci, utils: Cu} = Components; let migratedBookmarks = true; try {

migratedBookmarks = getPref("bookmarks.migrated.ie");

} catch (e) {} if (!migratedBookmarks) {

Cu.import("resource:///modules/MigrationUtils.jsm");
MigrationUtils.getMigrator("ie").then((migrator) => {
  migrator.migrate(Ci.nsIBrowserProfileMigrator.BOOKMARKS, null, null);
});
pref("bookmarks.migrated.ie", true);

}

4) Copy the firefox.cfg file to: "\\%pcname%\c$\Program Files\Mozilla Firefox\firefox.cfg"

Izmjenjeno od Reod_Dai97