Funkcionalnosć toś togo sedła se pśez wótwardowańske źěła wobgranicujo, kótarež maju wašo dožywjenje pólěpšyś. Jolic nastawk waš problem njerozwězujo a cośo pšašanje stajiś, wobrośćo se na našo zgromoźeństwo pomocy, kótarež na to caka, wam na @FirefoxSupport na Twitter a /r/firefox na Reddit pomagaś.

Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

setting browser.taskbar.lists.tasks.enabled in prefs.js

  • 2 wótegronje
  • 1 ma toś ten problem
  • 1 naglěd
  • Slědne wótegrono wót ikhalil

more options

if I open the browser and in about:config set browser.taskbar.lists.tasks.enabled to false

it works and disables the task list in the task bar.

if i edit the prefs.js I find that the following option

   user_pref("browser.taskbar.lists.tasks.enabled", false);

if I set to true and start the browser again the task list is still hidden

   user_pref("browser.taskbar.lists.tasks.enabled", true);

So the only way to get it back is to toggle it from about:config. So putting the task list back and editing the prefs.js to add

   user_pref("browser.taskbar.lists.tasks.enabled", false);

doesnt turn off the tasklist either

So the task list is not dependent on the prefs.js at all? It seems to only toggle when done from about:config...

in fact if I delete the prefs.js altogether and it still remembers the task bar setting. So where is this particular setting made in windows? Is it in registry or somewhere else in windows

if I open the browser and in about:config set browser.taskbar.lists.tasks.enabled to false it works and disables the task list in the task bar. if i edit the prefs.js I find that the following option user_pref("browser.taskbar.lists.tasks.enabled", false); if I set to true and start the browser again the task list is still hidden user_pref("browser.taskbar.lists.tasks.enabled", true); So the only way to get it back is to toggle it from about:config. So putting the task list back and editing the prefs.js to add user_pref("browser.taskbar.lists.tasks.enabled", false); doesnt turn off the tasklist either So the task list is not dependent on the prefs.js at all? It seems to only toggle when done from about:config... in fact if I delete the prefs.js altogether and it still remembers the task bar setting. So where is this particular setting made in windows? Is it in registry or somewhere else in windows

Wubrane rozwězanje

Yes I did however the issue is Windows JumpList is configured in registry so as the parameter is toggled firefox is editing windows registry hence why adding the param to prefs.js alone doesnt work

I needed it added to prefs.js as I package a lockdown version of Firefox Portable to our customer for use in an application

I found a way to make it work. I added lines to config.js

  • Bulleted list item Firefox64\defaults\pref\config-prefs.js
  pref("general.config.filename", "config.js");    
  pref("general.config.obscure_value", 0);  
  pref("general.config.sandbox_enabled", false); 
  • Bulleted list item Firefox64\config.js

let wjl = {}; Components.utils.import("resource:///modules/WindowsJumpLists.jsm", wjl); wjl.WinTaskbarJumpList._initTaskbar(); wjl.WinTaskbarJumpList._deleteActiveJumpList();

Toś to wótegrono w konteksće cytaś 👍 0

Wšykne wótegrona (2)

more options

Did you make sure that Firefox is closed when you make the change to prefs.js because it won't work if Firefox is running ?

Note that there is no need to edit prefs.js if you can make the change via Settings (Options/Preferences). You can also use a user.js file, but user.js is always read when you start Firefox, so changes made via about:config are undone after restarting Firefox (i.e. it only works for the current session).

more options

Wubrane rozwězanje

Yes I did however the issue is Windows JumpList is configured in registry so as the parameter is toggled firefox is editing windows registry hence why adding the param to prefs.js alone doesnt work

I needed it added to prefs.js as I package a lockdown version of Firefox Portable to our customer for use in an application

I found a way to make it work. I added lines to config.js

  • Bulleted list item Firefox64\defaults\pref\config-prefs.js
  pref("general.config.filename", "config.js");    
  pref("general.config.obscure_value", 0);  
  pref("general.config.sandbox_enabled", false); 
  • Bulleted list item Firefox64\config.js

let wjl = {}; Components.utils.import("resource:///modules/WindowsJumpLists.jsm", wjl); wjl.WinTaskbarJumpList._initTaskbar(); wjl.WinTaskbarJumpList._deleteActiveJumpList();