1.

Solve : Making custom tel protocol windows 10?

Answer» <html><body><p>I'm working on a <a href="https://interviewquestions.tuteehub.com/tag/custom-941842" style="font-weight:bold;" target="_blank" title="Click to know more about CUSTOM">CUSTOM</a> softphone application and running into a problem. I would really <a href="https://interviewquestions.tuteehub.com/tag/like-537196" style="font-weight:bold;" target="_blank" title="Click to know more about LIKE">LIKE</a> to redirect the tel: links to a application on my PC. I have figgured out I need to add my application to the windows TEL; URL:tel option list. <a href="https://interviewquestions.tuteehub.com/tag/however-at-491999" style="font-weight:bold;" target="_blank" title="Click to know more about HOWEVER">HOWEVER</a> all solutions I'm finding don't seem to work. This documentation isn't working for me (yes i have restarted multiple times) some peaple say it isn't posible in windows 10 annymore, however there are a few third-party application that are <a href="https://interviewquestions.tuteehub.com/tag/popping-602779" style="font-weight:bold;" target="_blank" title="Click to know more about POPPING">POPPING</a> up. The applictions are not from the windows store so that can't be the issue either.<br/><br/>The .reg export I ended up with looks like this:<br/><br/>Windows Registry Editor Version 5.00<br/><br/>[HKEY_CLASSES_ROOT\tel]<br/>@="URL:Tel test"<br/>"URL Protocol"=""<br/><br/>[HKEY_CLASSES_ROOT\tel\DefaultIcon]<br/>@="C:\\Test\\Test.exe"<br/><br/>[HKEY_CLASSES_ROOT\tel\shell]<br/><br/>[HKEY_CLASSES_ROOT\tel\shell\open]<br/><br/>[HKEY_CLASSES_ROOT\tel\shell\open\command]<br/>@="C:\\Test\\Test.exe" "%1"<br/><br/>I would really appriciate anny tips towards the solution.Hi, I'm not familiar with setting this up, but can hopefully help, I found some info on the page below:<br/><a href="https://superuser.com/questions/1112229/cant-change-tel-protocol-handler-in-windows-10">https://superuser.com/questions/1112229/cant-change-tel-protocol-handler-in-windows-10</a><br/><br/> Here are my thoughts:<br/><br/>First of all, are there supposed to be two back slashes \\ when you are referring to a file destination? Windows only has a single \ in filenames - <br/>You used:<br/>@="C:\\Test\\Test.exe"<br/><br/>Shouldn't it be:<br/>@="C:\Test\Test.exe"<br/><br/>I read through all the code on that page, and there is a double backslash \\ used, but not for a filename, it looks like its for how you set the Dialler name in the registry<br/><br/>Also, when you replace @="dialer %1" with your filename, I don't think you keep the %1 part, so it just becomes @="C:\Test\Test.exe"<br/><br/><a href="https://interviewquestions.tuteehub.com/tag/hope-25911" style="font-weight:bold;" target="_blank" title="Click to know more about HOPE">HOPE</a> this may be some help.<br/></p></body></html>


Discussion

No Comment Found