示例#1
0
        public void InstallOffice2013()
        {
            InstUninst install = new InstUninst(_setupExe, " /AdminFile auto.msp");

            _msgsApps.WriteMsg("Instalando... Por favor, aguarde!");
            install.App();
        }
示例#2
0
 private void InstallNow()
 {
     _installUninstall = new InstUninst(_destination + "AnyDesk-CM.msi", "/qn");
     _msgsApps.WriteMsg("Instalando, AnyDesk. Por favor, aguarde!");
     _installUninstall.App();
     _msgsApps.CleanMsgs();
     _installUninstall = new InstUninst(@"C:\Program Files (x86)\AnyDeskMSI\AnyDeskMSI.exe", "");
     _installUninstall.App();
     _msgsApps.WriteMsg("Instalado, Abra o ícone vermelho com o nome AnyDesk em sua área de trabalho. Por favor!");
 }
示例#3
0
        private void InstallNow()
        {
            _installUninstall = new InstUninst(_destination + "\\TVInstall.exe", "/S");
            _msgsApps.WriteMsg("Instalando, Team Viewer. Por favor, aguarde!");
            _installUninstall.App();
            _msgsApps.CleanMsgs();
            _installUninstall = new InstUninst(@"C:\Program Files (x86)\TeamViewer\TeamViewer.exe", "");
            _installUninstall.App();
            _msgsApps.WriteMsg("Instalado, Abra o ícone azul com o nome TeamViewer em sua área de trabalho. Por favor!");

            Console.ReadKey();
        }