0

For an intranet app running on Windows 7, we need to create links that launch an EXE from Chrome. The link will look like this:

myapp://filename.xyz?param1=abcd&param2=efgh

This would launch myapp.exe and let it receive the parameters and launch the another custom app associated with the file on the user's machine.

In other words, how can we build something like the iTunes app that is launched from the browser? We're using C# 4.5 to build this. Thanks.

4

1 回答 1

2

将您的应用程序注册为协议处理程序:http: //msdn.microsoft.com/en-us/library/aa767914%28v=vs.85%29.aspx

于 2013-04-10T12:23:29.773 回答