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!

当サイトはユーザー体験を改善するためのメンテナンスを実施中に機能が制限される予定です。記事を読んでもあなたの問題が解決せず質問をしたい場合は、Twitter の @FirefoxSupport、Reddit の /r/firefox で、サポートコミュニティが皆さんを助けようと待機しています。

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Using INI switch with installer is not adding bookmarks defined in the ini file

  • 4 件の返信
  • 2 人がこの問題に困っています
  • 2 回表示
  • 最後の返信者: gravdiag

more options

So I'm stuck I've been trying to use the INI switch to save time by automatically adding bookmarks to the browser. I followed guides and created a basic ini file that has:


TEST

[BookmarksToolbar] item.1.title=Example item.1.link=http://example.com/ item.1.description=Example


And created a batch script to run the setup installer


cd /d %~dp0Firefox\setup setup.exe /INI=%~dp0Firefox\distribution.ini PAUSE


When I run the batch file it will execute the installer in silent mode so I know that it's recognizing the INI switch. If I copy the path that the INI switch is using into run it opens the file so I know that it's pointing to the correct path but then when I open firefox the bookmark is still missing. Anyone have any ideas?

So I'm stuck I've been trying to use the INI switch to save time by automatically adding bookmarks to the browser. I followed guides and created a basic ini file that has: ;TEST [BookmarksToolbar] item.1.title=Example item.1.link=http://example.com/ item.1.description=Example And created a batch script to run the setup installer cd /d %~dp0Firefox\setup setup.exe /INI=%~dp0Firefox\distribution.ini PAUSE When I run the batch file it will execute the installer in silent mode so I know that it's recognizing the INI switch. If I copy the path that the INI switch is using into run it opens the file so I know that it's pointing to the correct path but then when I open firefox the bookmark is still missing. Anyone have any ideas?

選ばれた解決策

Thanks for the replies I followed the policy idea. Essentially I took the installer extracted it and then in the core folder I added a distribution folder and inside of that added policies.json using https://addons.mozilla.org/en-US/firefox/addon/enterprise-policy-generator/ since I was running into issues with my JSON. So now if I call the setup executable inside in the extracted installer it also installs the distribution folder. I tried following the repack guide here https://support.mozilla.org/en-US/kb/repackaging-windows-installer but it was more than I needed. Thanks again!

この回答をすべて読む 👍 0

すべての返信 (4)

more options

It seems when I copied my ini and batch file over it lost the new line characters:

[BookmarksToolbar] item.1.title=Example item.1.link=http://example.com/ item.1.description=Example

and

cd /d %~dp0Firefox\setup setup.exe /INI=%~dp0Firefox\distribution.ini PAUSE

more options

Is there some documentation on this that you're following?

I saw a reference here:

https://brashear.me/blog/2017/12/07/how-to-deploy-firefox-with-bookmarks-and-addons/

But it mentioned creating new profiles rather than running the Setup program.

Is this for your own Firefox or are you trying to set up a large number of computers?

more options
more options

選ばれた解決策

Thanks for the replies I followed the policy idea. Essentially I took the installer extracted it and then in the core folder I added a distribution folder and inside of that added policies.json using https://addons.mozilla.org/en-US/firefox/addon/enterprise-policy-generator/ since I was running into issues with my JSON. So now if I call the setup executable inside in the extracted installer it also installs the distribution folder. I tried following the repack guide here https://support.mozilla.org/en-US/kb/repackaging-windows-installer but it was more than I needed. Thanks again!