最近有個客戶提出想從網站上啓動一個客戶端的程序,研究了下,實現方法以下:shell
try
{
string appPath = "\"" + Application.ExecutablePath + "\" \"%1\"";
string strKey = Application.ProductName;
string strKey_shell_open_cmd = strKey + @"\shell\open\command";
var subKey = Registry.ClassesRoot.CreateSubKey(strKey);
subKey.SetValue("URL Protocol", "1");
var subKey_shell_open_cmd = Registry.ClassesRoot.CreateSubKey(strKey_shell_open_cmd);
subKey_shell_open_cmd.SetValue(null, appPath);
}
catch (Exception ex)
{
MessageBox.Show(string.Format("Web啓動參數設置失敗, 緣由: {0}", ex.Message));
}app
注入後效果以下圖:網站
%1是傳入的參數orm
<a href="HelloWorld://123">Hello World</a>blog
這裏123是傳入的參數get
當咱們點擊這個link時,就會自動打開這個客戶端軟件。cmd