Mozilla 도움말 검색

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

Learn More

GPO to set firefox to open ICA files in Citrix Workspace

  • 7 답장
  • 1 이 문제를 만남
  • 848 보기
  • 최종 답변자: 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....
첨부된 스크린샷

선택된 해결법

Extra comma after false.

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

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

모든 댓글 (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

선택된 해결법

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!