Pronote 2015

Informatie

Creator Bericht
percherie Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informatie

Platforms:
Downloads: 10953
Wine: 1.4

Feedbacks

Omschrijving

Ce script permet d'installer automatiquement Pronote 2015 depuis le site officiel d'index éducation. Wikipedia.

Les autres versions de Pronote sont installables en indiquant le fichier d'installation que vous devez préalablement télécharger.

Broncode

#!/bin/bash
# Installation de Pronote
# RealName: Pronote 2015
# Date : (2015-09-12 14-52)
# Last revision : (2015-09-12 14-52)
# Author : Percherie
 
 
#Vérifier que PlayOnLinux est exécuté
[ "$PLAYONLINUX" = "" ] && exit 0
 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
# Nom du script et du disque
TITLE="Pronote 2015"
PREFIX="Pronote"
WORKING_WINE="1.4"
 
# Controle de version
POL_SetupWindow_Init
POL_Debug_Init
 
# Nom des raccourcis
SHORTCUT="Client Pronote"
 
# Nom des fichier BIN
BIN="Install_PRNclient_FR2600104.exe"
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "Index Education" "http://www.index-education.com/" "Percherie" "$PREFIX"
 
 
# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Pronote
    POL_Download "http://tele3.index-education.com/telechargement/pn/V26.0/exe/$BIN"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi
 
# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
Set_OS win7
 
 
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"
 
 
# Raccourci pour Pronote
POL_Shortcut "Client PRONOTE.exe" "$SHORTCUT"
 
 
# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Bericht
dyp Zondag 30 April 2017 om 13:12
dyp

Bericht

hello I tried to install it with Debian Stretch (Pronote pre-downloaded or downloaded iby script) and the script crashed with the message ( :

Error in POL_Shortcut
Binary not found: Client PRONOTE.exe
Have you installed the program to the default location?

or

Error in POL_Wine
Wine semble avoir planté

Si votre programme est en cours d'exécution, ignorez simplement ce message

Antwoorden

percherie Vrijdag 23 September 2016 om 23:13
percherie Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Voici une nouvelle version du script qui fonctionne avec Pronote 2016

Je ne fait pas l'installation d'internet explorer 8 ni le forçage du rendu direct Draw en mode GDI mais ça à l'air de fonctionner. Je présume que IE8 est nécessaire pour l'envoi d'émail.

Tenez moi au courant, surtout si ça fonctionne.

Differences

@@ -2,7 +2,7 @@
 # Installation de Pronote
 # RealName: Pronote 2015
 # Date : (2015-09-12 14-52)
-# Last revision : (2015-09-12 14-52)
+# Last revision : (2016-09-22 20-20)
 # Author : Percherie
  
  
@@ -14,9 +14,9 @@
 source "$PLAYONLINUX/lib/sources"
  
 # Nom du script et du disque
-TITLE="Pronote 2015"
+TITLE="Pronote 2016"
 PREFIX="Pronote"
-WORKING_WINE="1.4"
+WORKING_WINE="1.8.4"
  
 # Controle de version
 POL_SetupWindow_Init
@@ -26,7 +26,7 @@
 SHORTCUT="Client Pronote"
  
 # Nom des fichier BIN
-BIN="Install_PRNclient_FR2600104.exe"
+BIN="Install_PRNclient_FR2700202.exe"
  
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "Index Education" "http://www.index-education.com/" "Percherie" "$PREFIX"
@@ -36,14 +36,14 @@
 POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
 if [ "$INSTALL_METHOD" = "LOCAL" ]
 then
-    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
+    POL_SetupWindow_browse "$(eval_gettext 'Veuillez choisir le fichier d'installation')" "$TITLE" "$BIN"
     INSTALLER="$APP_ANSWER"
 elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
 then
     POL_System_TmpCreate "$PREFIX"
     cd "$POL_System_TmpDir"
     # Téléchargement de Pronote
-    POL_Download "http://tele3.index-education.com/telechargement/pn/V26.0/exe/$BIN"
+    POL_Download "http://tele3.index-education.com/telechargement/pn/V27.0/exe/$BIN"
     INSTALLER="$POL_System_TmpDir/$BIN"
 fi
  
@@ -51,6 +51,8 @@
 POL_System_SetArch "x86"
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WORKING_WINE"
+POL_Call POL_Install_msxml6
+POL_Wine_OverrideDLL "native,builtin" "msxml6"
 Set_OS win7
  
  

New source code

#!/bin/bash
# Installation de Pronote
# RealName: Pronote 2015
# Date : (2015-09-12 14-52)
# Last revision : (2016-09-22 20-20)
# Author : Percherie
 
 
#Vérifier que PlayOnLinux est exécuté
[ "$PLAYONLINUX" = "" ] && exit 0
 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
# Nom du script et du disque
TITLE="Pronote 2016"
PREFIX="Pronote"
WORKING_WINE="1.8.4"
 
# Controle de version
POL_SetupWindow_Init
POL_Debug_Init
 
# Nom des raccourcis
SHORTCUT="Client Pronote"
 
# Nom des fichier BIN
BIN="Install_PRNclient_FR2700202.exe"
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "Index Education" "http://www.index-education.com/" "Percherie" "$PREFIX"
 
 
# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Veuillez choisir le fichier d'installation')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Pronote
    POL_Download "http://tele3.index-education.com/telechargement/pn/V27.0/exe/$BIN"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi
 
# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
POL_Call POL_Install_msxml6
POL_Wine_OverrideDLL "native,builtin" "msxml6"
Set_OS win7
 
 
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"
 
 
# Raccourci pour Pronote
POL_Shortcut "Client PRONOTE.exe" "$SHORTCUT"
 
 
# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Antwoorden

labono Vrijdag 9 September 2016 om 11:48
labono Anonymous

Bericht

Bonjour,

pronote 2016 tourne avec POL, sous la version wine system en 64 bits, mais configuré avec win7 avant l'installation, et en ajoutant la bibliothèque msxml6 dans la configuration de wine.

Antwoorden

Anonymous
Dinsdag 20 September 2016 om 15:21
Bonjour
Anonymous
Dinsdag 20 September 2016 om 15:23
quand j'essaie la configuration décrite, j'obtiens à l'installation de msxml6 : "Error in source
AMD64 is set, but msxml6 is needed."
anod1 Zaterdag 27 Augustus 2016 om 12:43
anod1 Anonymous

Bericht

pronote 2016 s'installe correctement, mais quand on le lance il affiche un message d'erreur "image non valide" . impossible d'aller au dela. 

Antwoorden

Anonymous
Dinsdag 6 September 2016 om 14:09
Bonjour, je confirme le problème de mon côté aussi.
percherie Zaterdag 12 September 2015 om 15:19
percherie Anonymous

Information

This update has been approved by the team.

Differences

@@ -0,0 +1,67 @@
+#!/bin/bash
+# Installation de Pronote
+# RealName: Pronote 2015
+# Date : (2015-09-12 14-52)
+# Last revision : (2015-09-12 14-52)
+# Author : Percherie
+ 
+ 
+#Vérifier que PlayOnLinux est exécuté
+[ "$PLAYONLINUX" = "" ] && exit 0
+ 
+ 
+# Charger les librairies
+source "$PLAYONLINUX/lib/sources"
+ 
+# Nom du script et du disque
+TITLE="Pronote 2015"
+PREFIX="Pronote"
+WORKING_WINE="1.4"
+ 
+# Controle de version
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+# Nom des raccourcis
+SHORTCUT="Client Pronote"
+ 
+# Nom des fichier BIN
+BIN="Install_PRNclient_FR2600104.exe"
+ 
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "Index Education" "http://www.index-education.com/" "Percherie" "$PREFIX"
+ 
+ 
+# Choix du fichier de la source d'installation
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
+    INSTALLER="$APP_ANSWER"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+    POL_System_TmpCreate "$PREFIX"
+    cd "$POL_System_TmpDir"
+    # Téléchargement de Pronote
+    POL_Download "http://tele3.index-education.com/telechargement/pn/V26.0/exe/$BIN"
+    INSTALLER="$POL_System_TmpDir/$BIN"
+fi
+ 
+# Configuration du disque virtuel
+POL_System_SetArch "x86"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE"
+Set_OS win7
+ 
+ 
+POL_Wine_WaitBefore "$TITLE"
+POL_Wine --ignore-errors "$INSTALLER"
+ 
+ 
+# Raccourci pour Pronote
+POL_Shortcut "Client PRONOTE.exe" "$SHORTCUT"
+ 
+ 
+# Fermeture de l'assistant d'installation
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Installation de Pronote
# RealName: Pronote 2015
# Date : (2015-09-12 14-52)
# Last revision : (2015-09-12 14-52)
# Author : Percherie
 
 
#Vérifier que PlayOnLinux est exécuté
[ "$PLAYONLINUX" = "" ] && exit 0
 
 
# Charger les librairies
source "$PLAYONLINUX/lib/sources"
 
# Nom du script et du disque
TITLE="Pronote 2015"
PREFIX="Pronote"
WORKING_WINE="1.4"
 
# Controle de version
POL_SetupWindow_Init
POL_Debug_Init
 
# Nom des raccourcis
SHORTCUT="Client Pronote"
 
# Nom des fichier BIN
BIN="Install_PRNclient_FR2600104.exe"
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "Index Education" "http://www.index-education.com/" "Percherie" "$PREFIX"
 
 
# Choix du fichier de la source d'installation
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN"
    INSTALLER="$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    POL_System_TmpCreate "$PREFIX"
    cd "$POL_System_TmpDir"
    # Téléchargement de Pronote
    POL_Download "http://tele3.index-education.com/telechargement/pn/V26.0/exe/$BIN"
    INSTALLER="$POL_System_TmpDir/$BIN"
fi
 
# Configuration du disque virtuel
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE"
Set_OS win7
 
 
POL_Wine_WaitBefore "$TITLE"
POL_Wine --ignore-errors "$INSTALLER"
 
 
# Raccourci pour Pronote
POL_Shortcut "Client PRONOTE.exe" "$SHORTCUT"
 
 
# Fermeture de l'assistant d'installation
POL_SetupWindow_Close
exit

Antwoorden