让 Firefox 4 和 Firefox 3.6.16 便携版同时工作
我在 Windows XP 上安装了 Firefox 4.0,但对于某些旧版应用程序,我有时需要使用 Firefox 3.6.16,因此我安装了:
Firefox 4 in C:\program files\Mozilla Firefox
Firefox 3.6.16 portable in C:\program files\Mozilla Firefox3
我在桌面上使用 2 个不同的快捷方式,当我单击这 2 个版本之一的图标时,它的工作方式如下预期的。 问题是,当我运行 Firefox 3 时,我单击 Firefox 4 图标,它会打开 Firefox 3 的新实例。我无法同时在桌面上打开 2 个版本。 是否可以让两个版本同时运行?
I have installed Firefox 4.0 on Windows XP, but for some legacy applications I need sometimes to use Firefox 3.6.16, so I installed:
Firefox 4 in C:\program files\Mozilla Firefox
Firefox 3.6.16 portable in C:\program files\Mozilla Firefox3
I use 2 different shortcuts on the desktop, and when I click on the icon of one of the 2 versions, it works as expected.
Problem is, when I have a Firefox 3 running, I click on the Firefox 4 icon, it opens a new instance of Firefox 3 instead. I cannot get the 2 version to be open on my desktop at the same time.
Is it possible to get the two versions to run at the same time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 -no-remote 命令行开关。您只能在非“常规”版本的版本(例如 Firefox 3)中使用此开关,否则从另一个应用程序打开链接将失败或打开另一个实例。
还要确保您使用不同的配置文件而不是共享它们。
请参阅
-P {profile}
(命名配置文件)和/或-profile {path}
(配置文件的路径)。例如,对 Firefox 4 使用默认配置文件,但对 Firefox 3 使用另一配置文件。
将两者放在一起:
Firefox 3 快捷方式:大致如下:
"C:\program files\Mozilla Firefox3\firefox.exe" -no-remote -profile C:\firefox3profile
使用
-no-remote
和配置文件开关不仅使您能够同时运行不同的版本,而且还可以使用不同的配置文件以及不同的首选项、cookie 和扩展集运行同一版本的多个实例。mozilla 最近还开发了一个独立的配置文件管理器,它可以帮助您更轻松地管理不同的版本和配置文件。
另请参阅:
You need to use the
-no-remote
command line switch. You only should use this switch with the version that is not your "regular" version, e.g. Firefox 3, or else opening links from another application will either fail or open yet another instance.Also make sure you use different profiles and not share them.
See the
-P {profile}
(named profile) and/or-profile {path}
(path to the profile).E.g. use the default profile for Firefox 4, but another one for Firefox 3.
Putting both together:
Firefox 3 shortcut: something along the lines of:
"C:\program files\Mozilla Firefox3\firefox.exe" -no-remote -profile C:\firefox3profile
Using
-no-remote
and profile switches will not only enable you to run different versions at the same time, but also multiple instances of the same version using different profiles, and with that different sets of preferences, cookies and extensions.There is also a standalone Profile Manager that mozilla developed recently, which might help you manage different versions and profiles more easily.
See also: