방법 1 - 플래그

방법 1 - 플래그

실행 중인 Firefox가 설치되어 있는 경우 다음에서 다운로드한 Firefox Portable을 시작하고 싶습니다.헤이즈. Windows에서는 FirefoxPortable.exe -no-remote게시된 실행 중입니다.여기, 그러나 항상 오류가 발생합니다.Firefox의 다른 인스턴스가 이미 실행 중입니다. Firefox Portable Edition을 시작하기 전에 Firefox의 다른 모든 인스턴스를 닫으십시오..

내가 시도한 것:

set MOZ_NO_REMOTE=1
FirefoxPortable.exe -CreateProfile test -no-remote
FirefoxPortable.exe -ProfileManager -no-remote 

의 중복이 아닙니다이 질문작성자가 동일한 Firefox 설치(또한 동일한 기본 프로필을 가짐)의 두 인스턴스를 시작하는 것 같기 때문입니다. 제 경우에는 Firefox 인스턴스가 설치되어 있습니다(기본 프로필 폴더 %APPDATA%\Mozilla\Firefox\Profiles). 휴대용 Firefox Data\profileFirefoxPortable.exe.

여러 Firefox 인스턴스를 시작하려면 어떻게 해야 합니까? 스위치 -no-remote파이어폭스 문서더 이상 일 안 해?

저는 최신 휴대용 버전인 Firefox 65를 사용하고 있습니다.

답변1

방법 1 - 플래그

이것을 직접 테스트한 후 제공된 솔루션은 다음과 같습니다.이 답변실제로 Firefox의 두 가지 다른 설치에서도 작동합니다. 편집: OP에 따르면 이는 설정에서 작동하지 않습니다. 그러나 두 번째 방법은 그렇습니다.

firefox -no-remote -profile "profile_path"

따라서 이미 실행 중인 일반 FF의 인스턴스가 있고 휴대용도 열고 싶다면 다음을 수행하십시오.

FirefoxPortable.exe -no-remote -profile "Data\profile"

반대로, 이미 실행 중인 휴대용으로 일반 설치를 열려면 다음을 수행합니다.

firefox.exe -no-remote -profile "%APPDATA%\Mozilla\Firefox\Profiles"

%APPDATA%(실제로 저는 절대 프로파일로만 테스트를 했고 이미 Windows PC를 종료했습니다. 실제 경로로 바꿔야 할 수도 있습니다 .)


방법 2 - .ini

FF 휴대용의 여러 인스턴스를 시작하는 또 다른 방법은 다음을 추가하는 것입니다.

AllowMultipleInstances=true

FirefoxPortable.ini문서에 따라 플래그를 사용하여 자동으로 호출하는 .exe(아직 없으면 생성)와 동일한 폴더에 저장합니다 ( -no-remote이 방법을 사용한다고 해서 별도의 프로필 사용이 보장되는 것은 아닙니다). .

답변2

나에게 도움이 된 솔루션. https://portableapps.com/comment/228523#comment-228523

  1. 귀하가 있는 디렉토리 FirefoxPortable.exe(라고 부르자 appRootDir)에서 디렉토리로 이동합니다.Other\Source\
  2. 파일을 FirefoxPortable.ini다음 위치에 복사하세요.appRootDir
  3. 복사한 내용의 행 을 AllowMultipleInstances=false다음으로 변경합니다 .AllowMultipleInstances=trueFirefoxPortable.iniappRootDir

프로필 디렉터리( --profile)와 같은 기타 옵션은 에서 설정됩니다 FirefoxPortable.ini.

[FirefoxPortable]
FirefoxDirectory=App\Firefox
ProfileDirectory=Data\profile
SettingsDirectory=Data\settings
PluginsDirectory=Data\plugins
FirefoxExecutable=firefox.exe
AdditionalParameters=
LocalHomepage=
DisableSplashScreen=false
AllowMultipleInstances=true
DisableIntelligentStart=false
SkipCompregFix=false
RunLocally=false

나는 FirefoxPortable버전을 사용한다124.0.1

관련 정보