为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Disable creation of private browsing shortcut

  • 3 个回答
  • 1 人有此问题
  • 4 次查看
  • 最后回复者为 Mike Kaply

more options

Im working on a deployment package for Mozilla Firefox 106.0.1 when launching Firefox on a brand new user it automatically creates a shortuct for private browsing. Im looking for a way to disable this as the package im creating is an appv package and this new shortcut installs in users profile, so it won't be uninstalled. I have searched google but cant find any hits.

We have the following for customization: Application directory\defaults\pref: localsettings.js with these settings: pref("general.config.obscure_value", 0); // only needed if you do not want to obscure the content with ROT-13 pref("general.config.filename", "mozilla.cfg");

Application directory\mozilla.cfg with these settings: // Don't show WhatsNew on first run after every update pref("browser.startup.homepage_override.mstone","ignore");

// Don't show 'know your rights' on first run pref("browser.rights.3.shown", true);

// Disable Policy Notice on First Run pref("toolkit.telemetry.reportingpolicy.firstRun", false);

// Disable checkDefaultBrowser lockPref("browser.shell.checkDefaultBrowser", false);

Application directory\distribution\policies.json with the following settings: {

 "policies": {
   "DisableAppUpdate": true,

"DontCheckDefaultBrowser": true } }

Im working on a deployment package for Mozilla Firefox 106.0.1 when launching Firefox on a brand new user it automatically creates a shortuct for private browsing. Im looking for a way to disable this as the package im creating is an appv package and this new shortcut installs in users profile, so it won't be uninstalled. I have searched google but cant find any hits. We have the following for customization: Application directory\defaults\pref: localsettings.js with these settings: pref("general.config.obscure_value", 0); // only needed if you do not want to obscure the content with ROT-13 pref("general.config.filename", "mozilla.cfg"); Application directory\mozilla.cfg with these settings: // Don't show WhatsNew on first run after every update pref("browser.startup.homepage_override.mstone","ignore"); // Don't show 'know your rights' on first run pref("browser.rights.3.shown", true); // Disable Policy Notice on First Run pref("toolkit.telemetry.reportingpolicy.firstRun", false); // Disable checkDefaultBrowser lockPref("browser.shell.checkDefaultBrowser", false); Application directory\distribution\policies.json with the following settings: { "policies": { "DisableAppUpdate": true, "DontCheckDefaultBrowser": true } }

所有回复 (3)

more options

> Im looking for a way to disable this as the package im creating is an appv package and this new shortcut installs in users profile, so it won't be uninstalled.

Can you be more specific as to what you mean by it won't be uninstalled? Does AppV remove shortcuts when it's done? Or is it some other installer?

You can try setting the preference:

browser.privacySegmentation.createdShortcut

to true and we shouldn't create the shortcut.

more options

AppV is basically virtualization of an application that runs in its own virtual bubble on windows. So the extra shortcut gets created in the local profile of the user launching the appv application, when uninstalling the appv application it dosent remove the local installed shortcut as its not a part of the package.

We did solve this after searching the config options and found: browser.privateWindowSeparation.enabled Setting it as follows solved our issue: lockPref("browser.privateWindowSeparation.enabled", false);

The setting: browser.privacySegmentation.createdShortcut Did not solve this issue as it was reset to default at each launch of mozilla firefox.

This did stop the shortcut from being created at launch. This question can be marked as completed.

more options

Glad that worked.

Are you buy chance getting a profile at each startup?

That would reset the preference.