La recherche a retourné 79 résultats

par empbilly
01 août 2018 - 01:29
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : Chocolatey installation?
Réponses : 2
Vues : 1849

Chocolatey installation?

hello, How I can make a code that execute the below command? @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))"...
par empbilly
11 juin 2018 - 13:33
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : Exception: Error during install -403 Client Error: Forbidden
Réponses : 2
Vues : 1852

Re: Exception: Error during install -403 Client Error: Forbidden

Hello Denis, thannks for the reply!! :D At first I can download the file. I can not tell you what problem the agent had, but when deploying a new agent and the machines upgrading to this new agent the problem is being solved. I'll leave the topic open for a few more days and then come back here to g...
par empbilly
05 juin 2018 - 18:02
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : Exception: Error during install -403 Client Error: Forbidden
Réponses : 2
Vues : 1852

Exception: Error during install -403 Client Error: Forbidden

Hello, After I update my wapt server from 1.5.1.22 to 1.5.1.23 version, the following error occurred while trying to install a package. wapt Server: debian 9 Installing 4C4C4544-0043-3610-8052-B6C04F564732 Exception: Error during install of 4C4C4544-0043-3610-8052-B6C04F564732 (=12): errors in packa...
par empbilly
25 avr. 2018 - 13:13
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

Re: advanced *.exe install

@htouvet, Many thanks for all your help!!! Below the final script version of full Installation and Uninstallation of the Miktex 2.9 software. # -*- coding: utf-8 -*- from setuphelpers import * uninstallkey = [] destdir = makepath(programfiles,'MIKTEX') startupdir = makepath(start_menu(1),"Progr...
par empbilly
23 avr. 2018 - 16:03
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

Re: advanced *.exe install

Any feedback about my last question?
par empbilly
20 avr. 2018 - 13:34
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

Re: advanced *.exe install

I change a litthe bit the script. # -*- coding: utf-8 -*- from setuphelpers import * uninstallkey = [] destdir = makepath(programfiles32,'miktex_setup') def install(): print('Coping miktexsetupx64.exe and miktexsetup.exe to MiKTeX 2.9 folder...') mkdirs(destdir) filecopyto('miktexsetupx64.exe',makep...
par empbilly
19 avr. 2018 - 17:43
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

Re: advanced *.exe install

I tried with the code below, but I get the error: Coping miktexsetupx64.exe and miktexsetup.exe to MiKTeX 2.9 folder... NameError: global name 'programfilesx86' is not defined # -*- coding: utf-8 -*- from setuphelpers import * uninstallkey = [] def install(): print('Coping miktexsetupx64.exe and mik...
par empbilly
19 avr. 2018 - 00:34
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

Re: advanced *.exe install

According to the miktex developer, only have the uninstall option via commnad line with the installer itself.

Code : Tout sélectionner

miktexsetup uninstall
Tomorrow I'll try to remove it by running wmic through cmd.exe or rmdir in "C:\Program Files\MiKTeX 2.9".
par empbilly
18 avr. 2018 - 16:56
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

Re: advanced *.exe install

After installing your package, what is the output of the cmd command : C:\Users\carinha>wapt-get list-registry miktex UninstallKey Software Version Uninstallstring -------------------------------------------------------------------------------- ------------------------------------------------------...
par empbilly
18 avr. 2018 - 14:15
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] advanced *.exe install
Réponses : 10
Vues : 10410

[RESOLVED] advanced *.exe install

Hello wapters, :D I am doing a custom setup.py for the installation of miktex software, but after installation I can't uninstall via wapt. Does the code below need any extra configuration? # -*- coding: utf-8 -*- from setuphelpers import * uninstallkey = [] def install(): print('installing miktex v....