We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

How can I define a default firefox profile name for multiple users so we can make Ivanti Environment Manager work?

  • 2 답장
  • 1 이 문제를 만남
  • 1 보기
  • 최종 답변자: EkilErif

more options

Our company offers users the choice of Internet Explorer, Microsoft Edge or Mozilla Firefox (60.3 ESR) for web browsing. Our users make use of non-persistent Virtual Desktop Infrastructure which means that each day they get a new desktop. We use a product called Ivanti Environment Manager to retain personal settings across sessions so that things like bookmarks, etc. to persist across sessions.

This product stores settings within a Microsoft SQL database and recommendation from the vendor of that application is only to keep what is necessary across sessions. This is great, we have a list of files and folders within the Firefox profile that we want to roam and some we don't.

Unfortunately this product cannot support wildcards in a folder path so users Firefox profiles are proving to cause a few issues. For example, my profile is C:\Users\Richard\AppData\Roaming\Mozilla\Firefox\i99zcqad.default. What we are looking to do is to have everyone's profile called something like Firefox.default so that we can configure exclusions knowing the profile name will be consistent.

Is there a method anywhere within Firefox where we could do this? Our current solution is a messy one to use a powershell script to find the profile name, rename it and then update the profiles.ini file with the new name but my worry is that some of the underlying sqllite files may face issues as a result of this.

Any suggestions are highly appreciated?

Thanks, Richard

Our company offers users the choice of Internet Explorer, Microsoft Edge or Mozilla Firefox (60.3 ESR) for web browsing. Our users make use of non-persistent Virtual Desktop Infrastructure which means that each day they get a new desktop. We use a product called Ivanti Environment Manager to retain personal settings across sessions so that things like bookmarks, etc. to persist across sessions. This product stores settings within a Microsoft SQL database and recommendation from the vendor of that application is only to keep what is necessary across sessions. This is great, we have a list of files and folders within the Firefox profile that we want to roam and some we don't. Unfortunately this product cannot support wildcards in a folder path so users Firefox profiles are proving to cause a few issues. For example, my profile is C:\Users\Richard\AppData\Roaming\Mozilla\Firefox\i99zcqad.default. What we are looking to do is to have everyone's profile called something like Firefox.default so that we can configure exclusions knowing the profile name will be consistent. Is there a method anywhere within Firefox where we could do this? Our current solution is a messy one to use a powershell script to find the profile name, rename it and then update the profiles.ini file with the new name but my worry is that some of the underlying sqllite files may face issues as a result of this. Any suggestions are highly appreciated? Thanks, Richard

글쓴이 Roland Tanglao 수정일시

선택된 해결법

Your modification of the profile path should have no adverse effects.

Another option (for a new user) is to use the command:

firefox -CreateProfile "JoelUser c:\internet\joelusers-moz-profile"

And then when you subsequently start Firefox, it will use that profile.

See:

https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options#-CreateProfile_.22profile_name_profile_dir.22

문맥에 따라 이 답변을 읽어주세요 👍 2

모든 댓글 (2)

more options

선택된 해결법

Your modification of the profile path should have no adverse effects.

Another option (for a new user) is to use the command:

firefox -CreateProfile "JoelUser c:\internet\joelusers-moz-profile"

And then when you subsequently start Firefox, it will use that profile.

See:

https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options#-CreateProfile_.22profile_name_profile_dir.22

more options

Thanks Mike.

I will add a configuration into my environment to use -createprofile for new users and then use the path modification for existing users. Should cover both scenarios off there.