Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

GPO to set firefox to open ICA files in Citrix Workspace

  • 7 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi Denis.Payne

more options

Hi,

We've GPOs in place for Edge and Chrome that set said browsers on all our Windows endpoints to open downloaded ICA files in Citrix Workspace.

I've imported the firefox.admx and mozilla.admx file along with assocaited .adml files, checked Github, checked through the GPO settings yet cannot figure out how to do the same with Firefox.

Is there a Mozila Firefox for Windows GPO ADMX setting I can use to control the "Firefox>Settings>General>Files and Applications>Applications" section to add "Content type: ica | Action: Use Citrix Workspace"?

Thanking you....

Hi, We've GPOs in place for Edge and Chrome that set said browsers on all our Windows endpoints to open downloaded ICA files in Citrix Workspace. I've imported the firefox.admx and mozilla.admx file along with assocaited .adml files, checked Github, checked through the GPO settings yet cannot figure out how to do the same with Firefox. Is there a Mozila Firefox for Windows GPO ADMX setting I can use to control the "Firefox>Settings>General>Files and Applications>Applications" section to add "Content type: ica | Action: Use Citrix Workspace"? Thanking you....
Đính kèm ảnh chụp màn hình

Giải pháp được chọn

Extra comma after false.

I use https://jsonlint.com/ to check my JSON.

Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (7)

more options

We have policy called Handlers that should do what you want

https://github.com/mozilla/policy-templates/blob/master/README.md#handlers

more options

Mike Kaply said

We have policy called Handlers that should do what you want https://github.com/mozilla/policy-templates/blob/master/README.md#handlers

Thanks, I enabled Handlers with the below info but Firefox>Settings>General>Files and Applications>Applications shows no ICA entry.

{

 "mimeTypes": {
   "application/x-ica": {
     "action": "useSystemDefault",
     "ask": false
   }
 },

}

Thought it may still work even though ICA not listed but it doesn't, ICA files need to be downloaded then clicked on before they open in default app being Citrix Workspace.

more options

Mike Kaply said

We have policy called Handlers that should do what you want https://github.com/mozilla/policy-templates/blob/master/README.md#handlers

I changed Handlers from "mimeTypes" to the below "extensions", same result as before with no change in Firfox in that it doesn't show ICA added under Applications and .ICA files do not auto open.

{

 "extensions": {
   "ica": {
     "action": "useSystemDefault",
     "ask": false,
   }
 }

}

more options

Can you go to about:policies and see if there are any errors?

more options

Mike Kaply said

Can you go to about:policies and see if there are any errors?

about:policies#active Active The Enterprise Policies service is inactive.

about:policies#errors Errors Policy Errors Unable to parse JSON for Handlers

So there is something wrong with the below entry?

{

"extensions": {
  "ica": {
    "action": "useSystemDefault",
    "ask": false,
  }
}

}

more options

Giải pháp được chọn

Extra comma after false.

I use https://jsonlint.com/ to check my JSON.

more options

Mike Kaply said

Extra comma after false. I use https://jsonlint.com/ to check my JSON.

Hi Mike, That did the trick, thank you!