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!

Az oldal korlátolt funkcionalitással fog rendelkezni, amíg elvégezzük a felhasználói élményt javító karbantartást. Ha egy leírás nem oldja meg a problémáját, és kérdést tenne fel, akkor a támogatási közösségünk a @FirefoxSupport Twitter oldalon tud segíteni, vagy az /r/firefox oldalon a Redditen.

Támogatás keresése

Kerülje el a támogatási csalásokat. Sosem kérjük arra, hogy hívjon fel egy telefonszámot vagy osszon meg személyes információkat. Jelentse a gyanús tevékenységeket a „Visszaélés bejelentése” lehetőséggel.

További tudnivalók

A témacsoportot lezárták és archiválták. Tegyen fel új kérdést, ha segítségre van szüksége.

How can I deploy the setting for the default PDF action back to Reader?

  • 4 válasz
  • 7 embernek van ilyen problémája
  • 5 megtekintés
  • Utolsó üzenet ettől: JasonNVSD

more options

Due to a legacy application, we must continue to use an old version of Reader with Firefox. Firefox 19 changes it to the built-in viewer, and once someone has upgraded, setting "pdfjs.disabled" to "true" changes the action to "Always ask" (not back to Reader). If I set it through Tools and Options, it only changes it for the current user.

I need to be able to apply to set this for all users, and preferably in a way that can be deployed to many machines.

Due to a legacy application, we must continue to use an old version of Reader with Firefox. Firefox 19 changes it to the built-in viewer, and once someone has upgraded, setting "pdfjs.disabled" to "true" changes the action to "Always ask" (not back to Reader). If I set it through Tools and Options, it only changes it for the current user. I need to be able to apply to set this for all users, and preferably in a way that can be deployed to many machines.

Összes válasz (4)

more options

In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:

  1. Go to Tools > Options (or Firefox > Options).
  2. In the Options window, select the Applications tab.
  3. In the Search field, type PDF. You should find Portable Document Format (PDF).
  4. On the right handside you should find an Action column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose Preview in Firefox.
more options

That only changes it for the current user. I need to be able to change it for all users.

more options

You will probably have to parse the plugin.disable_full_page_plugin_for_types pref and remove "application/pdf" to make Firefox use the Adobe Reader for embedded PDF files.

See also:

The only way to modify prefs for all users is via a mozilla.cfg file because this file is run as a JavaScript file and can contain privileged JavaScript code.

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

These functions can be used in the mozilla.cfg file:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

Módosította: cor-el,

more options

Thanks cor-el! I already use locked preferences, but I didn't know pdfjs added that one.

Is it possible to use locked preferences to always block "application/pdf" but allow other values that might be added in the future?