Impossible de désinstaller la livebox orange

Fermé
lucie - 11 févr. 2008 à 15:05
gouby Messages postés 45647 Date d'inscription vendredi 11 janvier 2008 Statut Contributeur Dernière intervention 10 mai 2016 - 11 févr. 2008 à 15:36
Bonjour,

impossible de désinstaller la livebox orange :

J'ai essayé de désinstaller ma livebox d'orange sous vista que j'avais configure en wifi mais aucun logiciel tel que "ccleaner, ajout/suppression, easy cleaner, regcleaner" ne peuvent le désinstaller.

J'ai comme message d'erreur :

Une erreur est survenu dans le script de cette page.

Ligne : 29
Caractère : 2
Erreur : Bibliothèque non inscrite.
Code : 0
URL : file:///C:/Program%20Files/Orange/Intallation/GUI/entry.html

Voulez-vous continuer à exécuter les scripts de cette page ?


C'est une page blanche qui apparaît avec ce message.

Voici le script de entry.html :

<HTML>
<HEAD>
<TITLE>Entry</TITLE>

<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<style type="text/css" media="screen">
<!--
#layer1 { visibility: visible; position: absolute}
#layer2 { visibility: hidden; position: absolute}
--></style>
<script SRC="Javascript/Common.js" type="text/javascript"></script>
<script type="text/javascript">
<!--

// Gestion des frames
var frameSize = "*,0,570,*";
var frameSizeLayer2="*,570,0,*";

// Fonction callback de l'écran chargé
var Callback;

// Variables lovales
var sIHMPath="";

///////////////////////////////////////////////////
///////////////////////////////////////////////////
function InitEntryScreen()
{
window.external.SetInterface(window.document,"EntryPointCallback");
window.external.Execute("INSTALL_GUI", "action","INSTALL_GUI","GETIHMPATH","");
}

var sPage;
///////////////////////////////////////////////////
///////////////////////////////////////////////////
function EntryPointCallback(Service, Param1, Param2)
{
//traceHTML(userTrace,Service + ":" + Param1 + ":" + Param2);

switch(Param1)
{
// Récupération du path des fichiers GUI
case "IHMPATH":
sIHMPath = Param2;
window.external.Execute("INSTALL_GUI", "action","INSTALL_GUI","GETLANGUAGE","");
break;

// Récupération de la langue
case "LANGUAGE":
SetSelectedLanguage( Param2 );
window.external.Execute("INSTALL_GUI", "action","AUTOMATON","GETFIRSTSCREEN","");
break;

case "DISPLAY":
// Construction de la page a charger
sPage = sIHMPath + "\\" + GetSelectedLanguage() + "\\HTML\\" + Param2 + ".html";
traceHTML(userTrace,"\n\n *** PAGE LOADED : " + sPage + " *** \n");
// the time-out is mandatory - otherwise, not working on IE5.0
setTimeout('displayURL()', 100);
break;

default :
Callback(Service, Param1, Param2);
break;
}
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function displayURL()
{
traceHTML(navigationTrace,"displayURL");
ptObject = eval(document.getElementById("layer1"));
ptObject1 = eval(document.getElementById("navigationID"));
ptObject2 = eval(document.getElementById("corpsID"));

// security test for initialization
ptObject.rows= frameSize;
// Page de navigation
ptObject1.src = "vide.html";
ptObject1.style.visibility = "visible";
// Page centre
ptObject2.src = sPage;
ptObject2.style.visibility = "visible";
}

///////////////////////////////////////////////////
// Sends a command to InstallGUI
///////////////////////////////////////////////////
function SendCommand(command)
{
if(command == "")
{
alert("Command empty");
}
else
{
window.external.Execute("INSTALL_GUI", "action","AUTOMATON","COMMAND",command);
}

}
///////////////////////////////////////////////////
// The following section concerns internal screen datas
// that need to be available for several screen
///////////////////////////////////////////////////

///////////////////////////////////////////////////
// Gestion des descriptors
///////////////////////////////////////////////////
var bWifiDescriptorCreated = false;
var WIFIDescriptorID="";
var bLanDescriptorCreated = false;
var LANDescriptorID="";
var bRtcDescriptorCreated = false;
var RTCDescriptorID="";
var bMobileDescriptorCreated = false;
var MOBILEDescriptorID="";
var bAdslDescriptorCreated = false;
var ADSLDescriptorID="";
var bEthernetDescriptorCreated = false;
var EthernetDescriptorID="";
var bLiveboxUSBDescriptorCreated = false;
var LiveboxUSBDescriptor="";

var autoDetectModem="";
var wirelessAdapterType='USB';

/////////////////////////////////////////////////////////////
// Save the modem that has been detected
/////////////////////////////////////////////////////////////
function setAutomaticDetectModemName(value)
{
traceHTML(functionTrace,"setAutomaticDetectModemName");
autoDetectModem = value;
}
/////////////////////////////////////////////////////////////
// Return the modem name that has been detected
/////////////////////////////////////////////////////////////
function getAutomaticDetectModemName()
{
traceHTML(functionTrace,"getAutomaticDetectModemName");
return autoDetectModem;
}

/////////////////////////////////////////////////////////////
// Save the wireless adapter type
/////////////////////////////////////////////////////////////
function setWirelessAdapterType(value)
{
traceHTML(functionTrace,"setWirelessAdapterType");
wirelessAdapterType = value;
}
/////////////////////////////////////////////////////////////
// Return the modem name that has been detected
/////////////////////////////////////////////////////////////
function getWirelessAdapterType()
{
traceHTML(functionTrace,"getWirelessAdapterType");
return wirelessAdapterType;
}

/////////////////////////////////////////////////////////////
// Save the detected LAN cards list
/////////////////////////////////////////////////////////////
function setDetectedLanCardsList( oArray )
{
traceHTML(functionTrace,"setDetectedLanCardsList");
detectedLanCardsList = oArray;
}
/////////////////////////////////////////////////////////////
// Return the modem name that has been detected
/////////////////////////////////////////////////////////////
function getDetectedLanCardsList()
{
traceHTML(functionTrace,"getDetectedLanCardsList");
return detectedLanCardsList;
}

var LiveBoxObject;
var bLiveBoxCreated=false;
/////////////////////////////////////////////////////////////
// LiveBox object
// all default datas that concerned livebox
/////////////////////////////////////////////////////////////
function liveBoxObject(mode,carte,descriporID)
{
traceHTML(functionTrace,"liveBoxObject:" + mode +":" + carte);
// wire LiveBox or Wireless LiveBox
this.LiveBoxModeLink = mode;
// Selected connection
this.Connection = carte;
// Detected connection
this.DetectedConnection = false;
// Descriptor name
this.descriptorName="";
// Descriptor ID (WIFILIVEBOXACCESS#1, )
this.descriptorID=descriporID;
// SSID
this.SSID=0xFF;
// Security key type
this.KeyType="";
// WEP key (LB1 only) or WPA key (LB2 only)
this.KeyValue = "";
// Aperage detection
this.Aperage = false;
// Previous LB Installation
this.PreviousInstallation = false;
// Admin ID
this.AdminID="";
// Admin Password
this.AdminPassword="";
//Connexion ID
this.ConnexionID="fti/";
// Connexion password
this.ConnexionPassword="";

// error
this.Error="";

}
/////////////////////////////////////////////////////////////
// creation of the object Livebox
/////////////////////////////////////////////////////////////
function createLiveBox(mode,carte,descriporID)
{
traceHTML(functionTrace,"createLiveBox:" + mode +":" + carte);
if (bLiveBoxCreated == true)
{
delete(LiveBoxObject);
}
LiveBoxObject = new liveBoxObject(mode,carte,descriporID);
bLiveBoxCreated = true;
}

/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getLiveBoxConnectingMode()
{
traceHTML(userTrace,"getLiveBoxConnectingMode:" + LiveBoxObject.LiveBoxModeLink);
return LiveBoxObject.LiveBoxModeLink;
}
/////////////////////////////////////////////////////////////
// wireless or not
/////////////////////////////////////////////////////////////
function setLiveBoxConnectingMode(value)
{
traceHTML(userTrace,"setLiveBoxConnectingMode:" + value);
LiveBoxObject.LiveBoxModeLink = value;
}
/////////////////////////////////////////////////////////////
// Wifi centrino PCMACI
/////////////////////////////////////////////////////////////
function setLiveBoxConnectingBoard(value)
{
traceHTML(functionTrace,"setLiveBoxConnectingBoard:" + value);
LiveBoxObject.Connection = value;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getLiveBoxConnectingBoard()
{
traceHTML(functionTrace,"getLiveBoxConnectingBoard:" + LiveBoxObject.Connection);
return LiveBoxObject.Connection ;
}

/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function setDescriptorName(value)
{
traceHTML(userTrace,"setDescriptorName:" + value);
LiveBoxObject.descriptorName = value;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getDescriptorName()
{
traceHTML(userTrace,"getDescriptorName:" + LiveBoxObject.descriptorName);
return LiveBoxObject.descriptorName ;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function setDescriptorID(value)
{
traceHTML(userTrace,"setDescriptorID:" + value);
LiveBoxObject.descriptorID = value;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getDescriptorID()
{
if (LiveBoxObject != null)
{
traceHTML(functionTrace,"getDescriptorID:" + LiveBoxObject.descriptorID);
return LiveBoxObject.descriptorID ;
}
else
{
traceHTML(functionTrace,"getDescriptorID: empty returned");
return "";
}
}



/////////////////////////////////////////////////////////////
// Set SSID
/////////////////////////////////////////////////////////////
function setLiveBoxSSID(value)
{
traceHTML(userTrace,"setLiveBoxSSID:" + value);
LiveBoxObject.SSID = value;
}
/////////////////////////////////////////////////////////////
// Get SSID
/////////////////////////////////////////////////////////////
function getLiveBoxSSID()
{
var value = LiveBoxObject.SSID;
traceHTML(functionTrace,"getLiveBoxSSID:" + value);
return LiveBoxObject.SSID;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function setKeyType(value)
{
traceHTML(functionTrace,"setKeyType:" + value);
LiveBoxObject.KeyType = value;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getKeyType()
{
traceHTML(functionTrace,"getKeyType:" + LiveBoxObject.KeyType);
return LiveBoxObject.KeyType;
}
/////////////////////////////////////////////////////////////
// Set WPA or WEP key
/////////////////////////////////////////////////////////////
function setLiveBoxKey(value)
{
traceHTML(functionTrace,"setLiveBoxWPAKey:" + value);
LiveBoxObject.KeyValue = value;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getLiveBoxKey()
{
traceHTML(functionTrace,"getLiveBoxKey:" + LiveBoxObject.KeyValue);
return LiveBoxObject.KeyValue;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function setError(value)
{
traceHTML(functionTrace,"setError:" + value);
LiveBoxObject.Error = value;
}
/////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////
function getError()
{
traceHTML(functionTrace,"getError:" + LiveBoxObject.Error);
return LiveBoxObject.Error;
}

var g_sPairingMode = "easy";
var g_sEZPairingErrorMessage = "";

// EZP from DB Init and Mode Flags
var g_bEZPDBInit = false;
var g_bEZPDBMode = false;

///////////////////////////////////////////////////
// END internal screen datas
///////////////////////////////////////////////////


//-->
</script>
<frameset onload="InitEntryScreen();" rows="*" cols="*,780,*" framespacing="0" frameborder="no" border="0">
<frame src="vide.html" frameborder="no" scrolling="no" marginwidth="0" marginheight="0" id="gauche">
<frameset id="layer1" rows="*,0,570,*" cols="*" framespacing="0" frameborder="no" border="0">
<frame src="vide.html" frameborder="no" scrolling="no" marginwidth="0" marginheight="0">
<frame id="navigationID" name="navigation" src="navigation.html" noresize scrolling="no">
<frame id="corpsID" name="corps" noresize scrolling="no">
<frame src="vide.html" frameborder="no" scrolling="no" marginwidth="0" id="bas">
</frameset>

<frame src="vide.html" frameborder="no" scrolling="no" marginwidth="0">
</frameset>

<noframes>
<body>
</body>
</noframes>
</html>


SVP si vous avez une solution pour que je puisse tout virer et réinstaller pour refaire ma config merci pour vos solus.

MERCI d'avance
Lucie
A voir également:

8 réponses

Bonjour,

Qu'entend tu par désintaller ta LiveBox ? Car une LiveBox ne se désinstalle pas, mais c'est l'utilitaire orange de connexion qui se désinstalle. et si c'est ca que tu veux désinstaller normalement tu le trouvera dans "Panneau de configuration" puis dans "Ajout/suppression de programmes" .

++
1
Oui mais cette utilitaire s'appel : Dans Ajout/supp " Orange - Logiciels Internet", si c'est ça ça marche pas sinon je ne voie rien qui ressemble à un nom se rapprochant de ce que tu dis "l'utilitaire orange de connexion". Ou alors il porte un nom que je n'arrive pa à identifier, ; se serait quoi ?

Merci pour ton aide.
0
Re,

Non ce nom"Orange - Logiciels Internet" me semble correct ca doit être ca, mais le problème c'est que si tu cliques sur Désinstaller il ne veux pas se désinstaller c'est bien ca ?? Je me demande peut etre que non mais si tu reinsere le CD-Rom orange dans ton lecteur te propose-t-il de le desinstaller ?? Ca m'étonnerait mais bon sais-t-ton jamais :)

++
0
Non il ne propose pas de désinstallation.
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Re,

Et il te met quoi quand tu cliquer sur désinstaller dans Ajout/Suppression de programmes ???

Ce que tu a ecris plus haut dans ton premier post ??

++
0
oui, une page blanche envoyé par entry.html ou il y a à l'intérieur ce script et par dessus la page blanche une boite la boite de dialogue avec le message problème de script à la ligne 29 ...
0
Re,

C'est ennuyeux en effet. Hum sinon je sais que tu peux configurer ta Livebox sans passer par ce logiciel orange donc tu peux toujours essayer comme ceci mais pour ce qui est de la désinstallation a part comme ca moi je ne sais pas trop trop comment faire autrement. Allez dans le registre mais bon la vaut mieux savoir ce qu on fait sinon c'est formatage et reinstallation de tout !!

Donc bon je sais pas trop quoi te dire si ce n'est de configurer ta connexion Wifi sans passer par leur logiciel (pourri :p)

++
0
gouby Messages postés 45647 Date d'inscription vendredi 11 janvier 2008 Statut Contributeur Dernière intervention 10 mai 2016 6 470
11 févr. 2008 à 15:36
salut
a mon avis il est endommagé, ce qui m etonne c est que meme avec ccleaner ou autre logiciel du meme type tu n y arrive pas
sinon desinstalle le en mode sans echec, je crois que sur vista quand tu allume ton pc, tu dois faire f11
0