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

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

            EnvInfo.StartProcess(fileName, "");
        }