admin管理员组

文章数量:1129125

I'm making a simple .NET program.exe that performs operations on my Windows 10 PC when invoking a custom URI scheme scheme:// from a browser. When opening a scheme:// link, I get the classic dialog that notifies users the action will open another application. This dialog uses the string "Deeplinker", but I would like to set a custom string here, like "Open MyProgram?".

I'm not sure where exactly it's getting that Deeplinker string from, as it's both the name of the folder my program.exe is under, and the name of the .NET project from which the exe was built. I tried looking through the Chrome for Developers page, but I'm not sure what to search for.

I have also noticed that the dialog string sometimes changes to <name-of-my-application> after program.exe is launched a couple times. Is it writing/reading it from a Windows registry somewhere?


Wasn't sure if I should have asked this on superuser or here, let me know.

本文标签: netSetting the application string for Browser deeplink promptsStack Overflow