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
Configuration: Windows vista
Firefox 2.0.0.12