如何在Windows 10 中将program.exe 设置为默认浏览器?
How to set program.exe as a default browser in Windows 10?
我需要将 program.exe
设置为 Windows 10
中的默认浏览器。
我找不到如何做到这一点的方法。即使 regedit
.
请给出一些建议如何做到这一点?
谢谢!
我假设您将自己注册为 HTTP 和 HTTPS progids 的默认处理程序?这将解决 Windows Vista 之前的所有问题。
您还应该将自己注册为 default program,但如 "Becoming the Default Browser" 部分所述,这只会在 Windows.
的较新版本上显示通知
文件类型和URI关联模型changed in Windows 8:
Apps are no longer able to programmatically set themselves as the default handler for a file type or URI. Instead, now the user always controls what the default handler is for a file type or URI scheme.
在 Windows Vista 到 Windows 8 中,您可以调用 IApplicationAssociationRegistrationUI::LaunchAdvancedAssociationUI
并让用户选择您的应用程序作为默认应用程序。在 Windows 10 中,甚至这个 API 也受到限制,只是告诉用户在“设置”应用中手动执行这些步骤。
如果没有为特定类型注册应用程序,您将成为默认类型,但浏览器绝不会出现这种情况。
Windows 10 个变化是 announced here。
我需要将 program.exe
设置为 Windows 10
中的默认浏览器。
我找不到如何做到这一点的方法。即使 regedit
.
请给出一些建议如何做到这一点?
谢谢!
我假设您将自己注册为 HTTP 和 HTTPS progids 的默认处理程序?这将解决 Windows Vista 之前的所有问题。
您还应该将自己注册为 default program,但如 "Becoming the Default Browser" 部分所述,这只会在 Windows.
的较新版本上显示通知文件类型和URI关联模型changed in Windows 8:
Apps are no longer able to programmatically set themselves as the default handler for a file type or URI. Instead, now the user always controls what the default handler is for a file type or URI scheme.
在 Windows Vista 到 Windows 8 中,您可以调用 IApplicationAssociationRegistrationUI::LaunchAdvancedAssociationUI
并让用户选择您的应用程序作为默认应用程序。在 Windows 10 中,甚至这个 API 也受到限制,只是告诉用户在“设置”应用中手动执行这些步骤。
如果没有为特定类型注册应用程序,您将成为默认类型,但浏览器绝不会出现这种情况。
Windows 10 个变化是 announced here。