Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#51 Le 24/12/2018, à 19:05

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

c'est l'adresse "C:/Program Files/VideoLAN/VLC/vlc.exe"

sans guillemet ça ne marche pas il interprète : "C:/Program" et avec guillemet ou \ : "illegal characters in path"


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#52 Le 24/12/2018, à 19:15

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Voici mon script pour la V3 (Captvty V3 est en alpha) et mon script n'est pas finit, le script précédent et Captvty V2 sont totalement fonctionnel.

#!/bin/bash

#Installation des paquets nécessaires
sudo apt install -y wine32 wine-stable winetricks

#Création du prefix wine pour Captvty
export WINEPREFIX="$HOME/.wine_captvty_V3"
export WINEARCH=win32

#Ajout sur le prefix des éléments nécessaires à Captvty
winetricks -q --unattended dotnet452 corefonts comctl32 gdiplus vcrun2010 ie8 flash fontsmooth-rgb vlc

#Remise à zéro du dossier où est contenu les fichiers du logiciel (en cas de mise à jour)
test -d "$HOME/.captvty_V3" && rm -rf "$HOME/.captvty_V3"
#(Re-)Création du dossier pour le logiciel
mkdir "$HOME/.captvty_V3"

#Récupération du programme proprement dit
wget -q -O- http://v3.captvty.fr/ | egrep -o '\/\/.+?\.zip' | sed 's/\/\//http:\/\//' | xargs wget -O /tmp/Captvty_V3.zip && \
ls -alrt /tmp/Cap*zip && unzip -d  "$HOME/.captvty_V3/" /tmp/Captvty_V3.zip && rm /tmp/Captvty_V3.zip

#Récupération de l'icône
test ! -d "$HOME/.icons" && mkdir "$HOME/.icons"
wget "https://framagit.org/Paullux/captvty-script-installateur-pour-ubuntu/raw/master/captvty-logo.png" -O "$HOME/.icons/captvty-logo.png"

#Création des préférences de Captvty
(cat << FIN
<?xml version="1.0" encoding="utf-8"?>
<settings>
  <maxRateFactor>5</maxRateFactor>
  <playerPaths>C:/Program Files/VideoLAN/VLC/vlc.exe</playerPaths>
  <maxRateEnabled>False</maxRateEnabled>
  <remuxEnabled>True</remuxEnabled>
  <downloadLocation>Z:/$HOME/Vidéos/Captvty_V3</downloadLocation>
  <maxJobs>0</maxJobs>
  <remuxRecycleEnabled>False</remuxRecycleEnabled>
  <recordingPaddingEnd>0</recordingPaddingEnd>
  <bandwidth>0</bandwidth>
  <windowMetrics>0, 0, 0, 0</windowMetrics>
  <remuxFormats>mp4</remuxFormats>
  <maxJobsEnabled>False</maxJobsEnabled>
  <recordingPaddingStart>0</recordingPaddingStart>
  <recordingPaddingEnabled>False</recordingPaddingEnabled>
  <windowState></windowState>
</settings>
FIN
) > "$HOME/.captvty_V3/Captvty.settings"

#Création du fichier desktop pour avoir un raccourci du logiciel dans le menu
(cat << FIN
[Desktop Entry]
Comment[fr_FR]=
Comment=
Exec=env WINEPREFIX="$HOME/.wine_captvty_V3" wine $HOME/.captvty_V3/Captvty.exe
GenericName[fr_FR]=Regarder et enregistrer la tv
GenericName=Regarder et enregistrer la tv
Icon=$HOME/.icons/captvty-logo.png
MimeType=
Name[fr_FR]=Captvty V3
Name=Captvty V3
Path=$HOME
StartupNotify=true
Terminal=false
TerminalOptions=
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=
FIN
) > "$HOME/.local/share/applications/Captvty_V3.desktop"

Dernière modification par paulwoisard (Le 24/12/2018, à 19:45)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#53 Le 24/12/2018, à 19:25

k3c

Re : J'ai écris un petit script pour simplifier l'installation de captvty

le

CoGetContextToken apartment not initialised

est "normal", je l'ai toujours


par contre, tu as passé quelles commandes pour construire Captvty V3 ?

tu as le détail des commandes et les winetricks quelque part ?

Je viens d'installer un Captvty V3 sur le Pc d'un ami, il fonctionne bien, donc la version actuelle est OK sous Linux


Archlinux sur Xiaomi Air 13

Hors ligne

#54 Le 24/12/2018, à 19:28

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

oui juste au dessus


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#55 Le 24/12/2018, à 19:40

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

le truc c'est que VLC ne se lance pas pour toutes les chaines et le lecteur intégré ne fonctionne pas toujours sur mon pc

Dernière modification par paulwoisard (Le 24/12/2018, à 19:42)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#56 Le 24/12/2018, à 21:27

Watael

Re : J'ai écris un petit script pour simplifier l'installation de captvty

salut,

grep | sed c'est moyen : sed tout seul doit pouvoir faire ce que fait grep.
d'ailleurs, je décomposerais la Récupération du programme proprement dit (par souci de lisibilité et de maintenabilité)

adresse=$(wget -q -O- 'http://captvty.fr' | sed -n 's/.*href="\(\/\/.\+\.zip\).*/http:\1/p')
test -n "$adresse" && wget -qO /tmp/Captvty.zip "$adresse"
if test -n /tmp/Captvty.zip
then
   unzip -d $HOME/.capTV /tmp/Captvty.zip &&  rm /tmp/Captvty.zip
fi

un sous-shell (here-doc entre parenthèses) est-il indispensable ?

cat <<eof > fichier.out
cmd1
cmd2
eof

Dernière modification par Watael (Le 26/12/2018, à 02:57)


Connected \o/
Welcome to sHell. · eval is evil.

Hors ligne

#57 Le 25/12/2018, à 10:22

k3c

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Watael

tu es l'un des experts en bash de ce forum, mais je ne comprends pas pas ta première commande.

Le soft Captvty est disponible sur captvty.fr, à une adresse variable.

Que devient la première ligne ?

Merci


Archlinux sur Xiaomi Air 13

Hors ligne

#58 Le 25/12/2018, à 19:18

Watael

Re : J'ai écris un petit script pour simplifier l'installation de captvty

la première ligne (wget | grep | sed | xargs) est simplifiée (pourquoi tant de commandes dans autant de pipes ? ); il ne reste que wget | sed assignée à une variable adresse.
ensuite, on vérifie/teste si la variable adresse existe, alors on télécharge le fichier .zip.
on pourrait au préalable (re)vérifier que son format correspond bien à celui d'une url valide, qui se finit par ".zip"...

c'est plus clair ?

Dernière modification par Watael (Le 26/12/2018, à 16:37)


Connected \o/
Welcome to sHell. · eval is evil.

Hors ligne

#59 Le 25/12/2018, à 22:25

melixgaro

Re : J'ai écris un petit script pour simplifier l'installation de captvty

$ wget -q -O- http://captvty.fr | sed -n 's/.*href="\(\/\/.\+\.zip\).*/http:\1/p'
http://releases.captvty.fr/c82070e1c9f7257435111efc984840a12b43cce9/captvty-2.7.9.zip

attention aux balises [ url ] qui sont dans le code proposé par Watael (autour de http://captvty.fr)


Linux depuis ~2007. Xubuntu seulement.

Hors ligne

#60 Le 26/12/2018, à 02:58

Watael

Re : J'ai écris un petit script pour simplifier l'installation de captvty

ah, oui. merci, j'ai corrigé.


Connected \o/
Welcome to sHell. · eval is evil.

Hors ligne

#61 Le 26/12/2018, à 09:22

k3c

Re : J'ai écris un petit script pour simplifier l'installation de captvty

merci


Archlinux sur Xiaomi Air 13

Hors ligne

#62 Le 28/12/2018, à 08:29

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

et dites pourquoi même en installation flash, le lecteur embarqué de la version 3 nous fait un bel écran blanc ? et vlc ne marche que sur certaines chaines et pas toutes, comme france télévision ?


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#63 Le 28/12/2018, à 09:01

k3c

Re : J'ai écris un petit script pour simplifier l'installation de captvty

j'ai posé la question, sans grand succès

https://forum.ubuntu-fr.org/viewtopic.php?id=2035002


Archlinux sur Xiaomi Air 13

Hors ligne

#64 Le 28/12/2018, à 14:28

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

avec winehq-staging la lecture en direct de france tv marche bien avec vlc. je regarde comment finaliser le script et je vais le poster ici.
Mais pas le schaine du groupe M6

Dernière modification par paulwoisard (Le 28/12/2018, à 14:49)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#65 Le 28/12/2018, à 14:50

gazimel

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Une tentative d'installation donne ceci

francois@francois-MS-7091:~/Bureau/Captvty$ bash script_install_captvty_v3
---------
script_install_captvty_v3: ligne 71: /home/francois/.local/share/applications/Captvty_V3.desktop: Aucun fichier ou dossier de ce type
francois@francois-MS-7091:~/Bureau/Captvty$ 

Je peux poster la totalité si nécessaire.
Merci.

Hors ligne

#66 Le 28/12/2018, à 14:59

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

gazimel a écrit :

Une tentative d'installation donne ceci

francois@francois-MS-7091:~/Bureau/Captvty$ bash script_install_captvty_v3
---------
script_install_captvty_v3: ligne 71: /home/francois/.local/share/applications/Captvty_V3.desktop: Aucun fichier ou dossier de ce type
francois@francois-MS-7091:~/Bureau/Captvty$ 

Je peux poster la totalité si nécessaire.
Merci.

Oui tu n'as pas de dossier ~.local/share/applications ? c'est possible de me dire à partir de chemin le dossier n'existe pas ?

@gazimel : Regarde juste en dessous j'ai modifié le script pour que ton problème soit résolu

Dernière modification par paulwoisard (Le 28/12/2018, à 15:46)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#67 Le 28/12/2018, à 15:30

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Voici le script pour la version 3 de Captvty :
ATTENTION, par défaut le script installe WineHQ-Staging (pour un meilleur fonctionnement), qui nécessite l'ajout d'un dépot tiers.
Quand la fenêtre le demande il faut choisir Windows 7 comme version de Windows.

#!/bin/bash

#Installation des paquets nécessaires
zenity --question \
--title "Choix de la version de wine" \
--text "Voulez-vous utiliser la version hq qui nécessite l'ajout d'un dépôt tiers (meilleurs performance) ou la version des dépots d'Ubuntu (problème pour voir la tv en direct) ?"

if [ $? = 0 ]
then
    sudo dpkg --add-architecture i386 
    wget -nc https://dl.winehq.org/wine-builds/winehq.key
    sudo apt-key add winehq.key
    sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/'
    sudo apt install -y winehq-staging wine-staging winetricks
else
    sudo dpkg --add-architecture i386
    sudo apt install -y wine32 wine-stable winetricks
fi

#Création du prefix wine pour Captvty
export WINEPREFIX="$HOME/.wine_captvty_V3"
export WINEARCH=win32
winecfg
#Choisir Windows 7

#Ajout sur le prefix des éléments nécessaires à Captvty
winetricks -q --unattended dotnet45 corefonts comctl32 msls31 gdiplus vcrun2010 ie8 fontsmooth-rgb vlc flash

#Remise à zéro du dossier où est contenu les fichiers du logiciel (en cas de mise à jour)
test -d "$HOME/.captvty_V3" && rm -rf "$HOME/.captvty_V3"
#(Re-)Création du dossier pour le logiciel
mkdir "$HOME/.captvty_V3"

#Récupération du programme proprement dit
wget -q -O- http://v3.captvty.fr/ | egrep -o '\/\/.+?\.zip' | sed 's/\/\//http:\/\//' | xargs wget -O /tmp/Captvty_V3.zip && \
ls -alrt /tmp/Cap*zip && unzip -d  "$HOME/.captvty_V3/" /tmp/Captvty_V3.zip && rm /tmp/Captvty_V3.zip

#Récupération de l'icône
test ! -d "$HOME/.icons" && mkdir "$HOME/.icons"
wget "https://framagit.org/Paullux/captvty-script-installateur-pour-ubuntu/raw/master/captvty-logo.png" -O "$HOME/.icons/captvty-logo.png"

#Création des préférences de Captvty
(cat << FIN
<?xml version="1.0" encoding="utf-8"?>
<settings>
  <maxRateFactor>5</maxRateFactor>
  <playerPaths>C:/Program Files/VideoLAN/VLC/vlc.exe</playerPaths>
  <maxRateEnabled>False</maxRateEnabled>
  <remuxEnabled>True</remuxEnabled>
  <downloadLocation>Z:/$HOME/Vidéos/Captvty_V3</downloadLocation>
  <maxJobs>0</maxJobs>
  <remuxRecycleEnabled>False</remuxRecycleEnabled>
  <recordingPaddingEnd>0</recordingPaddingEnd>
  <bandwidth>0</bandwidth>
  <windowMetrics>0, 0, 0, 0</windowMetrics>
  <remuxFormats>mp4</remuxFormats>
  <maxJobsEnabled>False</maxJobsEnabled>
  <recordingPaddingStart>0</recordingPaddingStart>
  <recordingPaddingEnabled>False</recordingPaddingEnabled>
  <windowState></windowState>
</settings>
FIN
) > "$HOME/.captvty_V3/Captvty.settings"

#Création du fichier desktop pour avoir un raccourci du logiciel dans le menu
test ! -d "$HOME/.local/share/applications" && mkdir "$HOME/.local/share/applications"
(cat << FIN
[Desktop Entry]
Comment[fr_FR]=
Comment=
Exec=env WINEPREFIX="$HOME/.wine_captvty_V3" wine $HOME/.captvty_V3/Captvty.exe
GenericName[fr_FR]=Regarder et enregistrer la tv
GenericName=Regarder et enregistrer la tv
Icon=$HOME/.icons/captvty-logo.png
MimeType=
Name[fr_FR]=Captvty V3
Name=Captvty V3
Path=$HOME
StartupNotify=true
Terminal=false
TerminalOptions=
Type=Application
X-DBUS-ServiceName=
X-DBUS-StartupType=
X-KDE-SubstituteUID=false
X-KDE-Username=
FIN
) > "$HOME/.local/share/applications/Captvty_V3.desktop"

Dernière modification par paulwoisard (Le 28/12/2018, à 18:57)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#68 Le 28/12/2018, à 16:07

gazimel

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Avant de tenter une nouvelle installation, 2 questions
-C'est quoi le dépôt tiers ?
-Timeshift est installé aukazou, un retour à la situation précédente, utile ou pas ?

Hors ligne

#69 Le 28/12/2018, à 16:28

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

En gros sous Ubuntu, la liste des logiciels disponibles est enregistrée sur des serveurs, ce qu'on appelle des dépôts.
Par défaut sur ton pc tu n'as accès qu'aux dépôts officiel du système. Mais si tu veux ajouter des programmes, tu peux ajoutés des dépôts tiers à ton système pour installer des programmes supplémentaires à ton système, comme Google Chrome ou Team Viewer par exemple.
Voici la page de Wine sur la documentation francophone d'Ubuntu Wine où est expliqué le principe du dépôt de Wine, je t'invite à lire toute la doc.

Pour Timeshift, tu peux toujours, mais pour désinstaller WineHQ, faut retirer les paquets liés à Wine, puis faire un "sudo apt autoremove" puis allez dans la configuration de tes sources logicielles pour retirer le dépôt de Wine ou rentré la ligne de commande suivante : "sudo apt-add-repository --remove 'https://dl.winehq.org/wine-builds/ubuntu/' " et enlevé le raccourci et l'icone en gros ça donne ça :

sudo apt remove winehq-staging wine-staging wine-staging-i386 wine-staging-amd64 winetricks
sudo apt autoremove
sudo apt-add-repository --remove 'https://dl.winehq.org/wine-builds/ubuntu/'
rm -rf "$HOME/.wine_captvty_V3"
rm -rf "$HOME/.captvty_V3"
rm -rf "$HOME/.icons"
rm -rf "$HOME/.local/share/applications/Captvty_V3.desktop"

à copier ligne par ligne dans un terminal.

Dernière modification par paulwoisard (Le 28/12/2018, à 16:30)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#70 Le 28/12/2018, à 17:44

gazimel

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Nouvelle tentative.cette fois l'installation va à son terme.
Lancement depuis l’icône, le sablier tourne, le cpu s'active quelques
secondes, et puis c’est tout.
J'ai loupé une marche ?

Hors ligne

#71 Le 28/12/2018, à 17:47

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Et si tu tapes dans un terminal :

env WINEPREFIX="$HOME/.wine_captvty_V3" wine $HOME/.captvty_V3/Captvty.exe

il se passe quoi ? tu peux écrire le retour ici ?
tu as tapé ton mot de passe au début ?
as-tu eu la fenêtre te demandant de choisir au début ?

sinon j'ai une idée, tape la commande suivante, et choisit Windows 10 puis appliquer puis ok :

env WINEPREFIX="$HOME/.wine_captvty_V3" winecfg

Par défaut Wine est réglé sur windows XP or le programme ne démarre pas sous XP, mais il démarre sur Windows 10.

Dernière modification par paulwoisard (Le 28/12/2018, à 18:18)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#72 Le 28/12/2018, à 18:27

gazimel

Re : J'ai écris un petit script pour simplifier l'installation de captvty

francois@francois-MS-7091:~$ env WINEPREFIX="$HOME/.wine_captvty_V3" wine $HOME/.captvty_V3/Captvty.exe
000b:fixme:winediag:start_process Wine Staging 4.0-rc3 is a testing version containing experimental patches.
000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org.
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"configSections" in state 2
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"sectionGroup" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"section" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"section" in state 6
0009:fixme:mscoree:parse_supported_runtime sku=L".NETFramework,Version=v4.5" not implemented
0009:fixme:mscoree:parse_probing privatePath=L"bin" not implemented
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"loadFromRemoteSources" in state 4
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"userSettings" in state 2
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"Captvty.Properties.Settings" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"setting" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"value" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"entityFramework" in state 2
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"defaultConnectionFactory" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"parameters" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"parameter" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"providers" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"provider" in state 6
0009:fixme:mscoree:ConfigFileHandler_startElement Unknown element L"provider" in state 6

Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an object
  at _R9._iMA (System.EventArgs ) [0x0000c] in <2db55612fd40495aadb46e8761ea536c>:0 
  at System.Windows.Forms.Control.UpdateBounds (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Int32 clientWidth, System.Int32 clientHeight) [0x000da] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.UpdateBounds (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height) [0x0004a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBoundsCoreInternal (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00110] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBoundsCore (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStrip.SetBoundsCore (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStripDropDown.SetBoundsCore (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBoundsInternal (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x0008a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBounds (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00038] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.set_Size (System.Drawing.Size value) [0x00025] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStripDropDown.OnLayout (System.Windows.Forms.LayoutEventArgs e) [0x00184] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.PerformLayout (System.Windows.Forms.Control affectedControl, System.String affectedProperty) [0x0005a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.PerformLayout () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.ResumeLayout (System.Boolean performLayout) [0x00062] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.ResumeLayout () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStrip..ctor (System.Windows.Forms.ToolStripItem[] items) [0x00125] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStrip..ctor () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStripDropDown..ctor () [0x00016] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at _R9.set_Bounds (System.Drawing.Rectangle value) [0x00026] in <2db55612fd40495aadb46e8761ea536c>:0 
  at (wrapper remoting-invoke-with-check) _R9:.ctor (System.Windows.Forms.Control)
  at _pjA._Ii (System.Windows.Forms.Control ) [0x0004d] in <2db55612fd40495aadb46e8761ea536c>:0 
  at _7s..ctor () [0x0009d] in <2db55612fd40495aadb46e8761ea536c>:0 
  at _IU..ctor () [0x00000] in <2db55612fd40495aadb46e8761ea536c>:0 
  at (wrapper remoting-invoke-with-check) _IU:.ctor ()
  at _pSA._rB () [0x00287] in <2db55612fd40495aadb46e8761ea536c>:0 
  at _pSA..ctor () [0x000e3] in <2db55612fd40495aadb46e8761ea536c>:0 
  at (wrapper remoting-invoke-with-check) _pSA:.ctor ()
  at _LP._a9 () [0x00165] in <2db55612fd40495aadb46e8761ea536c>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object reference not set to an instance of an object
  at _R9._iMA (System.EventArgs ) [0x0000c] in <2db55612fd40495aadb46e8761ea536c>:0 
  at System.Windows.Forms.Control.UpdateBounds (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Int32 clientWidth, System.Int32 clientHeight) [0x000da] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.UpdateBounds (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height) [0x0004a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBoundsCoreInternal (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00110] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBoundsCore (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStrip.SetBoundsCore (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStripDropDown.SetBoundsCore (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBoundsInternal (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x0008a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.SetBounds (System.Int32 x, System.Int32 y, System.Int32 width, System.Int32 height, System.Windows.Forms.BoundsSpecified specified) [0x00038] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.set_Size (System.Drawing.Size value) [0x00025] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStripDropDown.OnLayout (System.Windows.Forms.LayoutEventArgs e) [0x00184] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.PerformLayout (System.Windows.Forms.Control affectedControl, System.String affectedProperty) [0x0005a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.PerformLayout () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.ResumeLayout (System.Boolean performLayout) [0x00062] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.Control.ResumeLayout () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStrip..ctor (System.Windows.Forms.ToolStripItem[] items) [0x00125] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStrip..ctor () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at System.Windows.Forms.ToolStripDropDown..ctor () [0x00016] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0 
  at _R9.set_Bounds (System.Drawing.Rectangle value) [0x00026] in <2db55612fd40495aadb46e8761ea536c>:0 
  at (wrapper remoting-invoke-with-check) _R9:.ctor (System.Windows.Forms.Control)
  at _pjA._Ii (System.Windows.Forms.Control ) [0x0004d] in <2db55612fd40495aadb46e8761ea536c>:0 
  at _7s..ctor () [0x0009d] in <2db55612fd40495aadb46e8761ea536c>:0 
  at _IU..ctor () [0x00000] in <2db55612fd40495aadb46e8761ea536c>:0 
  at (wrapper remoting-invoke-with-check) _IU:.ctor ()
  at _pSA._rB () [0x00287] in <2db55612fd40495aadb46e8761ea536c>:0 
  at _pSA..ctor () [0x000e3] in <2db55612fd40495aadb46e8761ea536c>:0 
  at (wrapper remoting-invoke-with-check) _pSA:.ctor ()
  at _LP._a9 () [0x00165] in <2db55612fd40495aadb46e8761ea536c>:0 
francois@francois-MS-7091:~$ 

Pas d'amélioration.
Pour le mot de passe, je ne me souviens pas de l'avoir entré
Oui, il y a bien eu un choix proposé au début.

L'installation s’étant, me semblait-il, bien passée, je n'ai pas eu le réflexe d'enregistrer .

Hors ligne

#73 Le 28/12/2018, à 18:47

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

tu peux faire :

rm -rf "$HOME/.wine_captvty_V3"
winecfg

choisir windows 7

et relancer le script ?


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#74 Le 28/12/2018, à 18:49

paulwoisard

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Moi en mettant par défaut windows 7 ça s'est bien déroulé l'installation de .NET, le problème que tu as est un problème avec l'installation de .NET
attends, faut ajouter une commande au script.

J'ia modifié le script ci-dessus

Dernière modification par paulwoisard (Le 28/12/2018, à 18:59)


Actuellement, j'ai une toute petite équipe de bénévoles et on essaye de dév des deux, trois logiciels plus ou moins utile, en voici le site web : https://bit-scripts.github.io/

Hors ligne

#75 Le 28/12/2018, à 19:07

gazimel

Re : J'ai écris un petit script pour simplifier l'installation de captvty

Tu as modifié le script au # 67, je peux l' utiliser ?

Hors ligne