Цей вебсайт матиме обмежену функціональність, доки ми проводимо його обслуговування для поліпшення роботи. Якщо прочитана стаття не розв'язала вашу проблему і ви хочете поставити питання, наша спільнота підтримки з радістю допоможе вам на @FirefoxSupport у Twitter та /r/firefox на Reddit.

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Докладніше

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

GPO to set firefox to open ICA files in Citrix Workspace

  • 7 відповідей
  • 1 має цю проблему
  • 1 перегляд
  • Остання відповідь від 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!