Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Application Handlers

  • 6 odpovedí
  • 0 má tento problém
  • 60 zobrazení
  • Posledná odpoveď od Chris Wilkerson

more options

Hi All, I have been on the struggle bus lately trying to get the application handlers set properly in our GPO. I am trying to get PDF, webp, avif to open in browser, and jnlp to auto launch Java. Any help will be greatly appreciated!

{"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]},"application/x-java-jnlp-file":{"action":4,"handlers":[{"name":"javaws.exe","path":"C:\\Program Files (x86)\\Java\\jre-1.8\\bin\\javaws.exe"}],"extensions":["jnlp"]}}

Hi All, I have been on the struggle bus lately trying to get the application handlers set properly in our GPO. I am trying to get PDF, webp, avif to open in browser, and jnlp to auto launch Java. Any help will be greatly appreciated! {"application/pdf":{"action":3,"extensions":["pdf"]},"image/webp":{"action":3,"extensions":["webp"]},"image/avif":{"action":3,"extensions":["avif"]},"application/x-java-jnlp-file":{"action":4,"handlers":[{"name":"javaws.exe","path":"C:\\Program Files (x86)\\Java\\jre-1.8\\bin\\javaws.exe"}],"extensions":["jnlp"]}}

Vybrané riešenie

Yeah, you shouldn't need to modify anything for the other stuff.

And yeah, those should definitely work for jnlp.,

Čítať túto odpoveď v kontexte 👍 1

Všetky odpovede (6)

more options

The actions need to be actual names not numbers.

Have you taken a look at Handlers here?

https://mozilla.github.io/policy-templates/#handlers

Also, JNLP only works on the ESR (long story)

Pomohla vám táto odpoveď?

more options

Thank you for that information! So the handler action can be a number in the local Handlers.json in the local profile, but not in the GPO, got it. I guess there is simply not an action for "open in browser" or "handle internally"..?

Pomohla vám táto odpoveď?

more options

> I guess there is simply not an action for "open in browser" or "handle internally"..?

Yeah, I figured most of those would just happen by default. Have you found a case where I need to add it?

Pomohla vám táto odpoveď?

more options

I'm guessing webp, avif, and PDF are, by default, set to open in browser and my broken policies are changing them to save to file? So I just need to set a GPO handler for JNLP only, I think (I am on ESR102.7) This should work for the JNLP handler GPO, right? Thanks again for your time and support!!!

{

 "mimeTypes": {
   "application/x-java-jnlp-file": {
     "action": "useHelperApp",
     "ask": false,
     "handlers": [{
       "name": "Java(TM) Web Start",
       "path": "C:\\Program Files (x86)\\Java\\jre-1.8\\bin\\javaws.exe"
     }]
   }
 },
 "extensions": {
   "jnlp": {
     "action": "useHelperApp",
     "ask": false,
     "handlers": [{
       "name": "Java(TM) Web Start",
       "path": "C:\\Program Files (x86)\\Java\\jre-1.8\\bin\\javaws.exe"
     }]
   }
 }

}

Upravil(a) Chris Wilkerson dňa

Pomohla vám táto odpoveď?

more options

Vybrané riešenie

Yeah, you shouldn't need to modify anything for the other stuff.

And yeah, those should definitely work for jnlp.,

Pomohla vám táto odpoveď?

more options

Thank you so much, Mike!

Pomohla vám táto odpoveď?

Položiť otázku

Ak chcete odpovedať na príspevky, musíte sa prihlásiť do svojho účtu. Ak ešte nemáte účet, položte novú otázku.