Esempio n. 1
0
 private string SendMessage(string message)
 {
     return(EnvInfo.StartProcess(exePath, message));
 }
Esempio n. 2
0
        public void InstallDriver(string device)
        {
            string command = "\"" + device + "\" \"" + driverPath + "\"";

            EnvInfo.StartProcess(exePath, command);
        }
Esempio n. 3
0
 private ADBHelper(string exePath)
 {
     this.exePath = exePath;
     EnvInfo.StartProcess(exePath, "fork-server server", false);
 }
Esempio n. 4
0
        public void InstallVCRuntime()
        {
            string fileName = EnvInfo.GetStartPath() + "\\tools\\vcredist_x86.exe";

            EnvInfo.StartProcess(fileName, "");
        }