Mozilla 도움말 검색

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

Learn More

Application Handlers

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"]}}

선택된 해결법

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

And yeah, those should definitely work for jnlp.,

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

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

도움이 되셨습니까?

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"..?

도움이 되셨습니까?

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?

도움이 되셨습니까?

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"
     }]
   }
 }

}

글쓴이 Chris Wilkerson 수정일시

도움이 되셨습니까?

more options

선택된 해결법

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

And yeah, those should definitely work for jnlp.,

도움이 되셨습니까?

more options

Thank you so much, Mike!

도움이 되셨습니까?

질문하기

글에 답글을 달기 위해서는 계정으로 로그인해야만 합니다. 계정이 아직 없다면 새로운 질문을 올려주세요.