Logiciel utile par exemple pour les manuels numériques Nathan et Scratch !
Préférez les manuels numériques libres qui permettent un usage web et donc utilisables depuis n'importe quel type de postes (Windows, Mac, Gnu/Linux ou clients légers), en voici une liste : http://wiki.april.org/w/Manuels_scolaires_libres
AdobeAir se télécharge très mal voire pas du tout avec WPKG-Manage.
Il faut donc :
1 - Le télécharger à la main à l'adresse : https://airsdk.harman.com/assets/downloads/AdobeAIR.exe
2 - Le copier dans U:\wpkg\software\adobeair\
3 - renommer le fichier en AdobeAIRInstaller%version%.exe (en remplaçant %version% par la valeur de la variable version que vous trouverez dans le paquet
exemple : <variable name="version" value="33.1.1.533" />
AdobeAIRInstaller.exe devient AdobeAIRInstaller33.1.1.533.exe
4 - Bien vérifier les droits sur le dossier et le fichier
Code : Tout sélectionner
<package id="AdobeAir"
name="AdobeAir"
revision="%version%.1"
priority="10">
<variable name="version" value="33.1.1.533" />
<variable name="version_court" value="33.0" />
<eoledl dl="https://airsdk.harman.com/assets/downloads/AdobeAIR.exe" destname="adobeair\AdobeAIRInstaller%version%.exe" />
<variable name="PROGRAMFILES" value="%PROGRAMFILES%" architecture="x86"/>
<variable name="PROGRAMFILES" value="%PROGRAMFILES(X86)%" architecture="x64"/>
<variable name="ComSpec" value="%SystemRoot%\System32\cmd.exe" architecture="x86"/>
<variable name="ComSpec" value="%SystemRoot%\SysWOW64\cmd.exe" architecture="x64"/>
<variable name="CommonFiles" value="%PROGRAMFILES%\Fichiers communs" architecture="x86"/>
<variable name="CommonFiles" value="%PROGRAMFILES%\Common Files" architecture="x64"/>
<variable name="BDR" value="HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" architecture="x86"/>
<variable name="BDR" value="HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall" architecture="x64"/>
<check type="uninstall" condition="exists" path="Adobe AIR" />
<check type="registry" condition="equals" path="%BDR%\Adobe AIR\DisplayVersion" value="%version%" />
<install cmd='%COMSPEC% /c copy /y "%SOFTWARE%\adobeair\AdobeAIRInstaller%version%.exe" %temp%' />
<install cmd='%temp%\AdobeAIRInstaller%version%.exe -silent' />
<!-- Desactivation auto-update -->
<install cmd='%COMSPEC% /c REG ADD "HKLM\SOFTWARE\Policies\Adobe\AIR" /v "UpdateDisabled" /d "1" /t REG_DWORD /f' />
<upgrade include="remove" />
<upgrade include="install" />
<downgrade include="upgrade" />
<remove cmd='%COMSPEC% /c copy /y "%SOFTWARE%\adobeair\AdobeAIRInstaller%version%.exe" %temp%' />
<remove cmd='%temp%\AdobeAIRInstaller%version%.exe -uninstall' />
</package>
Méthode d'installation sous Ubuntu 14.04 LTS et 16.04 LTS :
Code : Tout sélectionner
wget -O adobe-air.sh http://drive.noobslab.com/data/apps/AdobeAir/adobe-air.sh
chmod +x adobe-air.sh;sudo ./adobe-air.sh
source : http://www.noobslab.com/2015/05/adobeai ... buntu.html