Mon ordi plante - sais plus quoi faire

Résolu
Utilisateur anonyme -  
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   -
Bonjours .
vous explique depuis ce matin la fenetre de mon écran est couleur beige ai j'ai des probleme de connection suis aller ds :executer puis msconfig ai fait demarrage normal et rien n'y change j'ai meme des problemes pour me connecter sais plus quoi faire
Merci de m'aider
A voir également:

12 réponses

Utilisateur anonyme
 
Je vs parle en mode sans echec...????????????
0
Utilisateur anonyme
 
SVP SA FAIT UN BAIL... URGENT
0
Utilisateur anonyme
 
En fait ai plus de connection ......suis decourager
0
noctambule28 Messages postés 33382 Date d'inscription   Statut Webmaster Dernière intervention   2 857
 
slt
c sympa le beige
en plus ca fait pas mal au yeux
plus serieusement ton niveau en pratique info pourrait aidé à te guider
je ne serais pas celui qui t'aidera le plus mais les details feront la difference
a+
0
Utilisateur anonyme > noctambule28 Messages postés 33382 Date d'inscription   Statut Webmaster Dernière intervention  
 
Mon niveau tres bas mon age tres elever,,,...bien il fonctionnais tres bien hier puis suis aller ds msconfig ai j'ai decocher toutes les cases sauf panda puis ai essayer on mode sans echec pour restauration du systeme impossible d'aller sur une date ulterieur ???
Salwa5 m'a fait installer http://babin.nelly.free.fr/WinsockFix.zip puis rien n'y fait je vois meme plus ma connection

Désoler pas etre capable tant dire + comme un enfant qui faut prendre par la main mrd :)
Merci de m'aider te Salut de Quebec ici 20hr02
0
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370
 
Tu es allé dans MSConfig avant le problème ou après ?
0
Utilisateur anonyme
 
Avant puis j'ai reesayer ai j'ai redemarer le tout en mode normal et rien ni fait,,,....
ensuite en mode sans echec non plus ??
0

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

Posez votre question
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370
 
Mouais mouais mouais, c'est clair que si tu as désactivé les services et processus nécessaires au démarrage de Windows, ça coince.

As tu essayer de démarrer en sélectionnant le mode "Dernière bonne configuration" ?

Sinon, as tu un CD d'installation de Windows XP ? Si oui, je pense que le plus simple serait de tenter une réparation de l'installation de Windows depuis celui-ci.

Démarrage du PC sur le CD d'installation
1ere choix = Choisir Installer (et pas réparer)
2eme choix = Choisir Réparer
Puis laisser le processus de réparation se dérouler
0
Utilisateur anonyme
 
Si j'ai essayer en mode derniere bonne configuration maeche pas

Tant qu'au disque il est integrer ds le PC lors de l'achat un Pack voit- tu ?? comprenais window XP, nero ,adobe reader Msn et un paquet de p'ti prg...
Que j'peu meme pas supprimer par des ++ ressent EX:adobe reader version 7.08 bien impossible de L'ecraser par 8.2
Sa dit version proteger
0
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370 > Utilisateur anonyme
 
Aïe aïe aïe, c'est pas gagné alors... Bon je vais tout de même réfléchir aux possibles solutions qui pourraient être envisagée.
0
noctambule28 Messages postés 33382 Date d'inscription   Statut Webmaster Dernière intervention   2 857
 
re 'soir le quebec
pour avoir reinstaller windows un certain nombre de fois , ce qu'a dit tazdevil est le plus juste...
pour un debutant que tu n'es pas
tu demarre normalement
si ca plante c cool, tu va avoir un ecran noir avec des choix à faire : donc tu choisi " dernière config.."
si ca plante pas mais que tu ne demarre pas ,(il faut forcé le plantage) tu fais un arret sauvage( le bouton on/OFF)
qd tu redemarre et qu'il ne te presente pas une page noire + ecriture tu refais un arret sauvage
si au bout de 2ou 3 essais tu ne peux toujours pas prendre la main sur le pc il doit y avoir 1 moyen en cherchant a passer par F8 (c'est le mode sans sechec mais il fait autre chose aussi(la ma memoire me joue des tours et je n'ai pas d'autre machine pour esssayer maintenant)
si tout cela ne fonctionne pas il faut te procurrer un cd bootable de windows pour pouvoir reparer
reposte qd tu auras essayé
la manip de reparation est inscrite dans l'installation de windows
pas de panique il faut juste lire
0
Utilisateur anonyme
 
Ok vais essayre ca :merci t'envoie quand meme rapport ping moi sa mr dit rien mais bon;;

MERCI les gars
:<BODY><HTML><SCRIPT Language=javascript></SCRIPT><DIV id=idBlank style='display:none'></DIV>

<SCRIPT language=VBS id=shared_vbs>
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'' Shared VBS code. Both this page and the saved file uses these functions
'' to navigate through the tree
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

' This flag indicates if the results tree should be displayed in text mode (i.e. + and - signs)
' or in non text mode (with the + and - images). The text mode is used by the saved file
' so it can be an independent htm file (does not rely on the +/- images)
g_bTextMode = TRUE

' +/- images used by the results tree
g_ImagePath = "..\images\expando\"
g_CollapseMouseRest = g_ImagePath & "expanded.gif"
g_ExpandMouseRest = g_ImagePath & "collapsed.gif"
g_EmptyMouseRest = g_ImagePath & "endnode.gif"

'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'' Toggle -
'' Description - Expand and collapse a branch in the results tree
'' Arguments - idButton - id of the + / - sign (Text or non text depending on the mode)
'' divSub - id of the branch to expand or collapse
'' Return - void
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
function toggle(idButton, divSub)
select case idButton.value
case 0
' Was expanded, now will be collapsed
divSub.style.display = "none"
idButton.value = 1
idButton.innerHTML = GetTreeButtonImage(idButton.value,0)
case 1
' Was collapsed, now will be expanded
divSub.style.display = ""
idButton.value = 0
idButton.innerHTML = GetTreeButtonImage(idButton.value,0)
case 2
' Does not change. It is a leaf, has nothing to expand of collapse
idButton.value = 2
idButton.innerHTML = GetTreeButtonImage(idButton.value,0)
end select
window.event.cancelBubble = true
end function

'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'' Toggle -
'' Description - Gets HTML code for the +/- sign.
'' Arguments - bButtonState - State of the button (expanded, collapsed, none)
'' Return - HTML code with the corresponding +/-
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
function GetTreeButtonImage(bButtonState, bMouseState)
if g_bTextMode then
' Get the Text mode +/-
select case bButtonState
case 0
strImg = "<SPAN style='font-family:Courier'> - </SPAN>"
case 1
strImg = "<SPAN style='font-family:Courier'> + </SPAN>"
case else
strImg = "<SPAN style='font-family:Courier'>   </SPAN>"
end select
GetTreeButtonImage = strImg
else
' Get the non text mode +/-
select case bButtonState
case 0
strImg = g_CollapseMouseRest
case 1
strImg = g_ExpandMouseRest
case else
strImg = g_EmptyMouseRest
end select
GetTreeButtonImage = "<img src='" & strImg & "'> "
end if
end function
</SCRIPT>

<STYLE id=idStyles>
.sys-font-body
{
font : messagebox;
}
.sys-color-body
{
color : #000000;
}
.sys-color-body-alert
{
color : #FF0000;
}
.sys-color-body-ok
{
color : #009900;
}
.sys-toppane-header-color
{
color : #FFFFFF;
}
.Text-Caption
{
color : blue;
font-family : Tahoma;
font-size : 8pt;
align-text : left
}
.Text-Comment
{
color : blue;
font-family : Tahoma;
font-size : 8pt;
align-text : left
}
.Text-Data
{
color : black;
font-family : Tahoma;
font-size : 7pt;
align-text : left
}
.Text-Loading
{
color : green;
font-family : Tahoma;
font-size : 8pt;
align-text : center;
font-weight : bold;
}
.Text-OptionDescription
{
color : green;
font-family : Tahoma;
font-size : 8pt;
align-text : center;
font-style : italic;
margin-left : 50 px
}
.AlignCenter
{
text-align:"center"
}

.AlignRight
{
text-align:"right"
}

.AlignLeft
{
text-align:"Left"
}

</STYLE>
<TABLE width="100%" border=0 valign="top">
<TBODY>
<TR>
<TD align=left bgColor=darkblue colSpan=3>
<DIV class="sys-font-body-bold sys-toppane-header-color">Service Internet</DIV></TD></TR>
<TR>
<TD width="30%">
<DIV class="sys-font-body sys-color-body"><SPAN onkeypress=toggle(tagTreeButton0,TreeBranch0); onclick=toggle(tagTreeButton0,TreeBranch0);><SPAN id=tagTreeButton0 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0>Outlook Express Mail par défaut</SPAN></SPAN></DIV></TD>
<TD width="50%">
<DIV class=Text-Caption>pophm.sympatico.ca / smtphm.sympatico.ca</DIV></TD>
<TD width="20%">
<DIV class="sys-color-body-alert sys-font-body">Échec</DIV></TD></TR>
<TR>
<TD width="100%" colSpan=3>
<DIV id=TreeBranch0 style="DISPLAY: none; MARGIN-LEFT: 50px">
<DIV><SPAN onkeypress=toggle(tagTreeButton1,idBlank); onclick=toggle(tagTreeButton1,idBlank);><SPAN id=tagTreeButton1 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">InBoundMailPort = </SPAN><SPAN class="sys-font-body sys-color-body">995</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton2,TreeBranch2); onclick=toggle(tagTreeButton2,TreeBranch2);><SPAN id=tagTreeButton2 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">InBoundMailServer = </SPAN><SPAN class="sys-font-body sys-color-body">pophm.sympatico.ca</SPAN><SPAN class="sys-color-body-alert sys-font-body"> (Échec)</SPAN></SPAN></SPAN>
<DIV id=TreeBranch2 style="DISPLAY: none; MARGIN-LEFT: 50px"><SPAN class=Text-Data>Envoi d'une requête 'ping' sur pop.bc.hotmail.com [65.54.191.188] avec 32 octets de données :<BR>Délai d'attente de la demande dépassé.<BR>Délai d'attente de la demande dépassé.<BR>Délai d'attente de la demande dépassé.<BR>Délai d'attente de la demande dépassé.<BR>Statistiques de Ping pour 65.54.191.188 :<BR>Paquets : envoyés = 4, reçus = 0, perdus = 4 (100% de perte)</SPAN></DIV></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton3,idBlank); onclick=toggle(tagTreeButton3,idBlank);><SPAN id=tagTreeButton3 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">InBoundMailType = </SPAN><SPAN class="sys-font-body sys-color-body">POP3</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton4,idBlank); onclick=toggle(tagTreeButton4,idBlank);><SPAN id=tagTreeButton4 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Connexion réussie au port pophm.sympatico.ca 995</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton5,idBlank); onclick=toggle(tagTreeButton5,idBlank);><SPAN id=tagTreeButton5 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">OutBoundMailPort = </SPAN><SPAN class="sys-font-body sys-color-body">25</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton6,TreeBranch6); onclick=toggle(tagTreeButton6,TreeBranch6);><SPAN id=tagTreeButton6 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">OutBoundMailServer = </SPAN><SPAN class="sys-font-body sys-color-body">smtphm.sympatico.ca</SPAN><SPAN class="sys-color-body-alert sys-font-body"> (Échec)</SPAN></SPAN></SPAN>
<DIV id=TreeBranch6 style="DISPLAY: none; MARGIN-LEFT: 50px"><SPAN class=Text-Data>Envoi d'une requête 'ping' sur smtp.bc.hotmail.com [65.54.191.190] avec 32 octets de données :<BR>Délai d'attente de la demande dépassé.<BR>Délai d'attente de la demande dépassé.<BR>Délai d'attente de la demande dépassé.<BR>Délai d'attente de la demande dépassé.<BR>Statistiques de Ping pour 65.54.191.190 :<BR>Paquets : envoyés = 4, reçus = 0, perdus = 4 (100% de perte)</SPAN></DIV></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton7,idBlank); onclick=toggle(tagTreeButton7,idBlank);><SPAN id=tagTreeButton7 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">OutBoundMailType = </SPAN><SPAN class="sys-font-body sys-color-body">SMTP</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton8,idBlank); onclick=toggle(tagTreeButton8,idBlank);><SPAN id=tagTreeButton8 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Connexion réussie au port smtphm.sympatico.ca 25</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV></DIV>
<TR>
<TD width="30%">
<DIV class="sys-font-body sys-color-body"><SPAN onkeypress=toggle(tagTreeButton9,TreeBranch9); onclick=toggle(tagTreeButton9,TreeBranch9);><SPAN id=tagTreeButton9 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0>Outlook Express News par défaut</SPAN></SPAN></DIV></TD>
<TD width="50%">
<DIV class=Text-Caption>news1.qc.sympatico.ca</DIV></TD>
<TD width="20%">
<DIV class="sys-color-body-alert sys-font-body">Échec</DIV></TD></TR>
<TR>
<TD width="100%" colSpan=3>
<DIV id=TreeBranch9 style="DISPLAY: none; MARGIN-LEFT: 50px">
<DIV><SPAN onkeypress=toggle(tagTreeButton10,idBlank); onclick=toggle(tagTreeButton10,idBlank);><SPAN id=tagTreeButton10 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">NewsNNTPPort = </SPAN><SPAN class="sys-font-body sys-color-body">119</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton11,TreeBranch11); onclick=toggle(tagTreeButton11,TreeBranch11);><SPAN id=tagTreeButton11 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">NewsServer = </SPAN><SPAN class="sys-font-body sys-color-body">news1.qc.sympatico.ca</SPAN><SPAN class="sys-color-body-ok sys-font-body"> (Réussi)</SPAN></SPAN></SPAN>
<DIV id=TreeBranch11 style="DISPLAY: none; MARGIN-LEFT: 50px"><SPAN class=Text-Data>Envoi d'une requête 'ping' sur transition.bell.newshosting.com [68.142.88.118] avec 32 octets de données :<BR>Réponse de 68.142.88.118 : octets = 32 temps = 98ms Durée de vie = 98<BR>Réponse de 68.142.88.118 : octets = 32 temps = 97ms Durée de vie = 97<BR>Réponse de 68.142.88.118 : octets = 32 temps = 97ms Durée de vie = 97<BR>Réponse de 68.142.88.118 : octets = 32 temps = 97ms Durée de vie = 97<BR>Statistiques de Ping pour 68.142.88.118 :<BR>Paquets : envoyés = 4, reçus = 4, perdus = 0 (0% de perte)<BR>Durée approximative des boucles en millisecondes :<BR>Minimum = 97ms, maximum = 98ms, moyenne = 97ms</SPAN></DIV></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton12,idBlank); onclick=toggle(tagTreeButton12,idBlank);><SPAN id=tagTreeButton12 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Impossible de se connecter au port news1.qc.sympatico.ca 119</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV></DIV>
<TR>
<TD width="30%">
<DIV class="sys-font-body sys-color-body"><SPAN onkeypress=toggle(tagTreeButton13,idBlank); onclick=toggle(tagTreeButton13,idBlank);><SPAN id=tagTreeButton13 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0>Proxy Web de Internet Explorer</SPAN></SPAN></DIV></TD>
<TD width="50%">
<DIV class=Text-Caption>Non configuré</DIV></TD>
<TD width="20%">
<DIV class="sys-color-body sys-font-body"></DIV></TD></TR>
<TR>
<TD align=left bgColor=darkblue colSpan=3>
<DIV class="sys-font-body-bold sys-toppane-header-color">Informations sur l'ordinateur</DIV></TD></TR>
<TR>
<TD width="30%">
<DIV class="sys-font-body sys-color-body"><SPAN onkeypress=toggle(tagTreeButton14,TreeBranch14); onclick=toggle(tagTreeButton14,TreeBranch14);><SPAN id=tagTreeButton14 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0>Système de l’ordinateur</SPAN></SPAN></DIV></TD>
<TD width="50%">
<DIV class=Text-Caption>YOUR-10C4966B90</DIV></TD>
<TD width="20%">
<DIV class="sys-color-body sys-font-body"></DIV></TD></TR>
<TR>
<TD width="100%" colSpan=3>
<DIV id=TreeBranch14 style="DISPLAY: none; MARGIN-LEFT: 50px">
<DIV><SPAN onkeypress=toggle(tagTreeButton15,idBlank); onclick=toggle(tagTreeButton15,idBlank);><SPAN id=tagTreeButton15 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">AdminPasswordStatus = </SPAN><SPAN class="sys-font-body sys-color-body">3</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton16,idBlank); onclick=toggle(tagTreeButton16,idBlank);><SPAN id=tagTreeButton16 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">AutomaticResetBootOption = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton17,idBlank); onclick=toggle(tagTreeButton17,idBlank);><SPAN id=tagTreeButton17 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">AutomaticResetCapability = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton18,idBlank); onclick=toggle(tagTreeButton18,idBlank);><SPAN id=tagTreeButton18 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">BootROMSupported = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton19,idBlank); onclick=toggle(tagTreeButton19,idBlank);><SPAN id=tagTreeButton19 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">BootupState = </SPAN><SPAN class="sys-font-body sys-color-body">Normal boot</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton20,idBlank); onclick=toggle(tagTreeButton20,idBlank);><SPAN id=tagTreeButton20 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Caption = </SPAN><SPAN class="sys-font-body sys-color-body">YOUR-10C4966B90</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton21,idBlank); onclick=toggle(tagTreeButton21,idBlank);><SPAN id=tagTreeButton21 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">ChassisBootupState = </SPAN><SPAN class="sys-font-body sys-color-body">2</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton22,idBlank); onclick=toggle(tagTreeButton22,idBlank);><SPAN id=tagTreeButton22 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CreationClassName = </SPAN><SPAN class="sys-font-body sys-color-body">Win32_ComputerSystem</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton23,idBlank); onclick=toggle(tagTreeButton23,idBlank);><SPAN id=tagTreeButton23 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CurrentTimeZone = </SPAN><SPAN class="sys-font-body sys-color-body">-240</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton24,idBlank); onclick=toggle(tagTreeButton24,idBlank);><SPAN id=tagTreeButton24 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">DaylightInEffect = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton25,idBlank); onclick=toggle(tagTreeButton25,idBlank);><SPAN id=tagTreeButton25 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Description = </SPAN><SPAN class="sys-font-body sys-color-body">AT/AT COMPATIBLE</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton26,idBlank); onclick=toggle(tagTreeButton26,idBlank);><SPAN id=tagTreeButton26 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Domain = </SPAN><SPAN class="sys-font-body sys-color-body">MSHOME</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton27,idBlank); onclick=toggle(tagTreeButton27,idBlank);><SPAN id=tagTreeButton27 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">DomainRole = </SPAN><SPAN class="sys-font-body sys-color-body">0</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton28,idBlank); onclick=toggle(tagTreeButton28,idBlank);><SPAN id=tagTreeButton28 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">EnableDaylightSavingsTime = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton29,idBlank); onclick=toggle(tagTreeButton29,idBlank);><SPAN id=tagTreeButton29 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">FrontPanelResetStatus = </SPAN><SPAN class="sys-font-body sys-color-body">3</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton30,idBlank); onclick=toggle(tagTreeButton30,idBlank);><SPAN id=tagTreeButton30 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">InfraredSupported = </SPAN><SPAN class="sys-font-body sys-color-body">Faux</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton31,idBlank); onclick=toggle(tagTreeButton31,idBlank);><SPAN id=tagTreeButton31 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">KeyboardPasswordStatus = </SPAN><SPAN class="sys-font-body sys-color-body">3</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton32,idBlank); onclick=toggle(tagTreeButton32,idBlank);><SPAN id=tagTreeButton32 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Manufacturer = </SPAN><SPAN class="sys-font-body sys-color-body">Gateway</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton33,idBlank); onclick=toggle(tagTreeButton33,idBlank);><SPAN id=tagTreeButton33 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Model = </SPAN><SPAN class="sys-font-body sys-color-body">H3106</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton34,idBlank); onclick=toggle(tagTreeButton34,idBlank);><SPAN id=tagTreeButton34 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Name = </SPAN><SPAN class="sys-font-body sys-color-body">YOUR-10C4966B90</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton35,idBlank); onclick=toggle(tagTreeButton35,idBlank);><SPAN id=tagTreeButton35 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">NetworkServerModeEnabled = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton36,idBlank); onclick=toggle(tagTreeButton36,idBlank);><SPAN id=tagTreeButton36 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">NumberOfProcessors = </SPAN><SPAN class="sys-font-body sys-color-body">1</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton37,idBlank); onclick=toggle(tagTreeButton37,idBlank);><SPAN id=tagTreeButton37 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">PartOfDomain = </SPAN><SPAN class="sys-font-body sys-color-body">Faux</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton38,idBlank); onclick=toggle(tagTreeButton38,idBlank);><SPAN id=tagTreeButton38 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">PauseAfterReset = </SPAN><SPAN class="sys-font-body sys-color-body">-1</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton39,idBlank); onclick=toggle(tagTreeButton39,idBlank);><SPAN id=tagTreeButton39 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">PowerOnPasswordStatus = </SPAN><SPAN class="sys-font-body sys-color-body">3</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton40,idBlank); onclick=toggle(tagTreeButton40,idBlank);><SPAN id=tagTreeButton40 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">PowerState = </SPAN><SPAN class="sys-font-body sys-color-body">0</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton41,idBlank); onclick=toggle(tagTreeButton41,idBlank);><SPAN id=tagTreeButton41 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">PowerSupplyState = </SPAN><SPAN class="sys-font-body sys-color-body">2</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton42,idBlank); onclick=toggle(tagTreeButton42,idBlank);><SPAN id=tagTreeButton42 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">PrimaryOwnerName = </SPAN><SPAN class="sys-font-body sys-color-body">Claude Giguere</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton43,idBlank); onclick=toggle(tagTreeButton43,idBlank);><SPAN id=tagTreeButton43 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">ResetCapability = </SPAN><SPAN class="sys-font-body sys-color-body">1</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton44,idBlank); onclick=toggle(tagTreeButton44,idBlank);><SPAN id=tagTreeButton44 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">ResetCount = </SPAN><SPAN class="sys-font-body sys-color-body">-1</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton45,idBlank); onclick=toggle(tagTreeButton45,idBlank);><SPAN id=tagTreeButton45 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">ResetLimit = </SPAN><SPAN class="sys-font-body sys-color-body">-1</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton46,TreeBranch46); onclick=toggle(tagTreeButton46,TreeBranch46);><SPAN id=tagTreeButton46 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN class="sys-font-body sys-color-body" tabIndex=0>Roles</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN>
<DIV id=TreeBranch46 style="DISPLAY: none; MARGIN-LEFT: 50px">
<DIV><SPAN onkeypress=toggle(tagTreeButton47,idBlank); onclick=toggle(tagTreeButton47,idBlank);><SPAN id=tagTreeButton47 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">LM_Server</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton48,idBlank); onclick=toggle(tagTreeButton48,idBlank);><SPAN id=tagTreeButton48 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">NT</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV></DIV></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton49,idBlank); onclick=toggle(tagTreeButton49,idBlank);><SPAN id=tagTreeButton49 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Status = </SPAN><SPAN class="sys-font-body sys-color-body">OK</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton50,TreeBranch50); onclick=toggle(tagTreeButton50,TreeBranch50);><SPAN id=tagTreeButton50 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN class="sys-font-body sys-color-body" tabIndex=0>SupportContactDescription</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN>
<DIV id=TreeBranch50 style="DISPLAY: none; MARGIN-LEFT: 50px">
<DIV><SPAN onkeypress=toggle(tagTreeButton51,idBlank); onclick=toggle(tagTreeButton51,idBlank);><SPAN id=tagTreeButton51 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">eMachines Inc.</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton52,idBlank); onclick=toggle(tagTreeButton52,idBlank);><SPAN id=tagTreeButton52 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">www.emachines.com</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton53,idBlank); onclick=toggle(tagTreeButton53,idBlank);><SPAN id=tagTreeButton53 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body"></SPAN><SPAN class="sys-color-body sys-font-body"></SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton54,idBlank); onclick=toggle(tagTreeButton54,idBlank);><SPAN id=tagTreeButton54 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Pour obtenir du soutien technique, téléphonez au :</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton55,idBlank); onclick=toggle(tagTreeButton55,idBlank);><SPAN id=tagTreeButton55 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">1 (604) 637-1419</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton56,idBlank); onclick=toggle(tagTreeButton56,idBlank);><SPAN id=tagTreeButton56 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">entre 5 h et 24 h (heure normale du Pacifique)</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton57,idBlank); onclick=toggle(tagTreeButton57,idBlank);><SPAN id=tagTreeButton57 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">sept jours par semaine.</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton58,idBlank); onclick=toggle(tagTreeButton58,idBlank);><SPAN id=tagTreeButton58 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body"></SPAN><SPAN class="sys-color-body sys-font-body"></SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton59,idBlank); onclick=toggle(tagTreeButton59,idBlank);><SPAN id=tagTreeButton59 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Pour obtenir du soutien technique par courriel, visitez le :</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton60,idBlank); onclick=toggle(tagTreeButton60,idBlank);><SPAN id=tagTreeButton60 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">http://instantfwding.com/?dn=emachines.com&pid=7PO2UM885 class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton61,idBlank); onclick=toggle(tagTreeButton61,idBlank);><SPAN id=tagTreeButton61 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body"></SPAN><SPAN class="sys-color-body sys-font-body"></SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton62,idBlank); onclick=toggle(tagTreeButton62,idBlank);><SPAN id=tagTreeButton62 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Site Web du soutien technique :</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton63,idBlank); onclick=toggle(tagTreeButton63,idBlank);><SPAN id=tagTreeButton63 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">http://www.emachines.com/support</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton64,idBlank); onclick=toggle(tagTreeButton64,idBlank);><SPAN id=tagTreeButton64 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">(Vide)</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton65,idBlank); onclick=toggle(tagTreeButton65,idBlank);><SPAN id=tagTreeButton65 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">(Vide)</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV></DIV></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton66,idBlank); onclick=toggle(tagTreeButton66,idBlank);><SPAN id=tagTreeButton66 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">SystemStartupDelay = </SPAN><SPAN class="sys-font-body sys-color-body">30</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton67,idBlank); onclick=toggle(tagTreeButton67,idBlank);><SPAN id=tagTreeButton67 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">SystemStartupOptions = </SPAN><SPAN class="sys-font-body sys-color-body">"Microsoft Windows XP dition familiale" /fastdetect /NoExecute=OptIn</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton68,idBlank); onclick=toggle(tagTreeButton68,idBlank);><SPAN id=tagTreeButton68 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">SystemStartupSetting = </SPAN><SPAN class="sys-font-body sys-color-body">0</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton69,idBlank); onclick=toggle(tagTreeButton69,idBlank);><SPAN id=tagTreeButton69 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">SystemType = </SPAN><SPAN class="sys-font-body sys-color-body">X86-based PC</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton70,idBlank); onclick=toggle(tagTreeButton70,idBlank);><SPAN id=tagTreeButton70 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">ThermalState = </SPAN><SPAN class="sys-font-body sys-color-body">2</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton71,idBlank); onclick=toggle(tagTreeButton71,idBlank);><SPAN id=tagTreeButton71 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">TotalPhysicalMemory = </SPAN><SPAN class="sys-font-body sys-color-body">233226240</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton72,idBlank); onclick=toggle(tagTreeButton72,idBlank);><SPAN id=tagTreeButton72 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">UserName = </SPAN><SPAN class="sys-font-body sys-color-body">YOUR-10C4966B90\Owner</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton73,idBlank); onclick=toggle(tagTreeButton73,idBlank);><SPAN id=tagTreeButton73 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">WakeUpType = </SPAN><SPAN class="sys-font-body sys-color-body">6</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV></DIV>
<TR>
<TD width="30%">
<DIV class="sys-font-body sys-color-body"><SPAN onkeypress=toggle(tagTreeButton74,TreeBranch74); onclick=toggle(tagTreeButton74,TreeBranch74);><SPAN id=tagTreeButton74 value="1"><SPAN style="FONT-FAMILY: Courier">+ </SPAN></SPAN><SPAN tabIndex=0>Système d'exploitation </SPAN></SPAN></DIV></TD>
<TD width="50%">
<DIV class=Text-Caption>Microsoft Windows XP Édition familiale</DIV></TD>
<TD width="20%">
<DIV class="sys-color-body sys-font-body"></DIV></TD></TR>
<TR>
<TD width="100%" colSpan=3>
<DIV id=TreeBranch74 style="DISPLAY: none; MARGIN-LEFT: 50px">
<DIV><SPAN onkeypress=toggle(tagTreeButton75,idBlank); onclick=toggle(tagTreeButton75,idBlank);><SPAN id=tagTreeButton75 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">BootDevice = </SPAN><SPAN class="sys-font-body sys-color-body">\Device\HarddiskVolume1</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton76,idBlank); onclick=toggle(tagTreeButton76,idBlank);><SPAN id=tagTreeButton76 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">BuildNumber = </SPAN><SPAN class="sys-font-body sys-color-body">2600</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton77,idBlank); onclick=toggle(tagTreeButton77,idBlank);><SPAN id=tagTreeButton77 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">BuildType = </SPAN><SPAN class="sys-font-body sys-color-body">Uniprocessor Free</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton78,idBlank); onclick=toggle(tagTreeButton78,idBlank);><SPAN id=tagTreeButton78 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Caption = </SPAN><SPAN class="sys-font-body sys-color-body">Microsoft Windows XP Édition familiale</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton79,idBlank); onclick=toggle(tagTreeButton79,idBlank);><SPAN id=tagTreeButton79 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CodeSet = </SPAN><SPAN class="sys-font-body sys-color-body">1252</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton80,idBlank); onclick=toggle(tagTreeButton80,idBlank);><SPAN id=tagTreeButton80 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CountryCode = </SPAN><SPAN class="sys-font-body sys-color-body">2</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton81,idBlank); onclick=toggle(tagTreeButton81,idBlank);><SPAN id=tagTreeButton81 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CreationClassName = </SPAN><SPAN class="sys-font-body sys-color-body">Win32_OperatingSystem</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton82,idBlank); onclick=toggle(tagTreeButton82,idBlank);><SPAN id=tagTreeButton82 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CSCreationClassName = </SPAN><SPAN class="sys-font-body sys-color-body">Win32_ComputerSystem</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton83,idBlank); onclick=toggle(tagTreeButton83,idBlank);><SPAN id=tagTreeButton83 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CSDVersion = </SPAN><SPAN class="sys-font-body sys-color-body">Service Pack 2</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton84,idBlank); onclick=toggle(tagTreeButton84,idBlank);><SPAN id=tagTreeButton84 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CSName = </SPAN><SPAN class="sys-font-body sys-color-body">YOUR-10C4966B90</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton85,idBlank); onclick=toggle(tagTreeButton85,idBlank);><SPAN id=tagTreeButton85 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">CurrentTimeZone = </SPAN><SPAN class="sys-font-body sys-color-body">-240</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton86,idBlank); onclick=toggle(tagTreeButton86,idBlank);><SPAN id=tagTreeButton86 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">DataExecutionPrevention_32BitApplications = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton87,idBlank); onclick=toggle(tagTreeButton87,idBlank);><SPAN id=tagTreeButton87 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">DataExecutionPrevention_Available = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton88,idBlank); onclick=toggle(tagTreeButton88,idBlank);><SPAN id=tagTreeButton88 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">DataExecutionPrevention_Drivers = </SPAN><SPAN class="sys-font-body sys-color-body">Vrai</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton89,idBlank); onclick=toggle(tagTreeButton89,idBlank);><SPAN id=tagTreeButton89 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">DataExecutionPrevention_SupportPolicy = </SPAN><SPAN class="sys-font-body sys-color-body">2</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton90,idBlank); onclick=toggle(tagTreeButton90,idBlank);><SPAN id=tagTreeButton90 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Debug = </SPAN><SPAN class="sys-font-body sys-color-body">Faux</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton91,idBlank); onclick=toggle(tagTreeButton91,idBlank);><SPAN id=tagTreeButton91 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Description = </SPAN><SPAN class="sys-font-body sys-color-body">Claude Giguere</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton92,idBlank); onclick=toggle(tagTreeButton92,idBlank);><SPAN id=tagTreeButton92 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">Distributed = </SPAN><SPAN class="sys-font-body sys-color-body">Faux</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton93,idBlank); onclick=toggle(tagTreeButton93,idBlank);><SPAN id=tagTreeButton93 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">EncryptionLevel = </SPAN><SPAN class="sys-font-body sys-color-body">168</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton94,idBlank); onclick=toggle(tagTreeButton94,idBlank);><SPAN id=tagTreeButton94 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">ForegroundApplicationBoost = </SPAN><SPAN class="sys-font-body sys-color-body">0</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton95,idBlank); onclick=toggle(tagTreeButton95,idBlank);><SPAN id=tagTreeButton95 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">FreePhysicalMemory = </SPAN><SPAN class="sys-font-body sys-color-body">67416</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton96,idBlank); onclick=toggle(tagTreeButton96,idBlank);><SPAN id=tagTreeButton96 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">FreeSpaceInPagingFiles = </SPAN><SPAN class="sys-font-body sys-color-body">578308</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton97,idBlank); onclick=toggle(tagTreeButton97,idBlank);><SPAN id=tagTreeButton97 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">FreeVirtualMemory = </SPAN><SPAN class="sys-font-body sys-color-body">2050552</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton98,idBlank); onclick=toggle(tagTreeButton98,idBlank);><SPAN id=tagTreeButton98 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">InstallDate = </SPAN><SPAN class="sys-font-body sys-color-body">13:32:20 2006-07-26</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton99,idBlank); onclick=toggle(tagTreeButton99,idBlank);><SPAN id=tagTreeButton99 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">LargeSystemCache = </SPAN><SPAN class="sys-font-body sys-color-body">0</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton100,idBlank); onclick=toggle(tagTreeButton100,idBlank);><SPAN id=tagTreeButton100 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">LastBootUpTime = </SPAN><SPAN class="sys-font-body sys-color-body">20:19:48 2007-06-26</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton101,idBlank); onclick=toggle(tagTreeButton101,idBlank);><SPAN id=tagTreeButton101 value="2"><SPAN style="FONT-FAMILY: Courier">  </SPAN></SPAN><SPAN tabIndex=0><SPAN class="sys-font-body sys-color-body">LocalDateTime = </SPAN><SPAN class="sys-font-body sys-color-body">20:38:41 2007-06-26</SPAN><SPAN class="sys-color-body sys-font-body"> </SPAN></SPAN></SPAN></DIV>
<DIV><SPAN onkeypress=toggle(tagTreeButton102,idBlank); onclick=toggle(tagTreeButton102
0
Utilisateur anonyme > Utilisateur anonyme
 
Ouffffffffffff..........j'ai reussi grace a Perfect toolXP2 ila fallut je ractive tous les programme qui etait desactiver un travail de titan HiHIHIHi mais suis content Merci
0
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370
 
Bonne nouvelle alors !!!

Par contre, je voudrais rappeler à tous ceux qui préconisent à tout va l'utilisation de MSConfig, qu'avant d'utiliser cet outil, il vaut mieux avoir une idée du fonctionnement de Windows... Sinon, bonjour les dégâts !!!
0
jessica
 
olala ben moi actuelment g le mmeme probleme !!

j'ai acheter en octobre dernier un pc de marque ACER( une belle merde lol), et ya deux moi ma carte mere été foutu obligé de le renvoi chez acer( les boule) je lé récupéré ke lundi, en voulant instaler internet il a planté kan la page windows xp c afiché ! donc jlé éteint sauvagement é apré il a bien fonctioner !!

et aujourd hui l horreur !! , j'ai intallé un antivirus ( avast) spybot ....; é en redémarant le pc le voilà kil rebeug !!!! gai tout essayé mode sans echec .. ya rien a faire !! j'en ai trop marre !!!!

aider moi sVP merci
0
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370
 
un pc de marque ACER( une belle merde lol)

C'est un pléonasme LOL MDR !!!

Peux tu donner plus d'explications concernant le bug, ma boule de crystal est à la révision des 100.000 heures ;-)
0
jessica
 
bem c'est bon merci, je l'ai ramener ou je l'ai achter et il vont m'en donner un tout neuf !! car je n'ai pas arété davoir des probleme avec !!! d'après se ke j'ai pu comprend c'est la carte mère qui n'aurait pas été changé et qui pourtant est resté deux mois chez acer pour la changer et il m'ont rien changé du tout
0
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370
 
d'après se ke j'ai pu comprend c'est la carte mère qui n'aurait pas été changé et qui pourtant est resté deux mois chez acer pour la changer et il m'ont rien changé du tout

Ca ne m'étonne qu'à moitié, ils m'ont déjà fait le coup sur au moins deux PC... La dernière fois qu'ils m'ont changé une carte-mère (sur un portable TravelMate qui était déjà parti en réparation 3 fois pour le même problème), ces @$% ont oubliés de tatouer la nouvelle carte, du coup, impossible d'utiliser la restauration système !!!

Enfin ce n'est pas le pire coup qu'ils m'ont fait, mais c'est encore une autre histoire ;-)

je l'ai ramené ou je l'ai acheté et ils vont m'en donner un tout neuf !!

Tu ne peux pas négocier un échange contre un PC d'une autre marque ?!? LOL
0
jessica
 
loool sa serai coll mais non il mont redonner le meme mais tout neuf !!!
0
TazDevil Messages postés 992 Date d'inscription   Statut Membre Dernière intervention   370
 
Eh bien bonne chance avec ce nouveau PC, en espérant que tu ne rencontres pas les mêmes problèmes ;-)
0

Discussions similaires