public Boolean Run(string path, string parm,Boolean is_hide=true)
{
     try{
             ProcessStartInfo startInfo = new ProcessStartInfo(path);
             startInfo.Arguments = parm;
          if (is_hide)
          {
                    //不显示窗体
                    startInfo.CreateNoWindow = true;
                    startInfo.UseShellExecute = false;
           }
                Process.Start(startInfo);
           }catch (Exception)
           {

            }
    return false;
}