從web啓動winform程序

最近有個客戶提出想從網站上啓動一個客戶端的程序,研究了下,實現方法以下:shell

1. 注入註冊表

      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

 

注入後效果以下圖:網站

image

%1是傳入的參數orm

 

2. 網站上加一個link

<a href="HelloWorld://123">Hello World</a>blog

這裏123是傳入的參數get

 

image

 

當咱們點擊這個link時,就會自動打開這個客戶端軟件。cmd

相關文章
相關標籤/搜索