zimxavier Posted November 7, 2015 Share Posted November 7, 2015 Après quelques lancements dans une machine virtuelle d'un windows 7 sp1 auquel je n'ai ajouté que les mises à jour proposées ici au 17 octobre 2015, j'ai eu la désagréable surprise d'avoir un écran qui semble me pousser à m'intéresser à windows 10 sans le dire : Quoiqu'il en soit je n'avais jamais eu cet écran auparavant. Je pense qu'il vient d'un des correctifs. Si quelqu'un a des informations je suis preneur. Quote Link to comment Share on other sites More sharing options...
mooms Posted November 8, 2015 Share Posted November 8, 2015 Non c'est une fonctionnalité qui a toujours existé dans W7, c'est la "mise à niveau express" pour passer à une édition supérieure, le raccourci se trouve dans le menu démarrer, il s'est lancé pour une raison ou une autre (clic accidentel?). Quote Link to comment Share on other sites More sharing options...
zimxavier Posted November 8, 2015 Share Posted November 8, 2015 Salut mooms... ça fait -très- longtemps ! hm... un clic accidentel, non, j'étais en train de faire une recherche dans le registre avec Registry Workshop et subitement la fenêtre est apparue...Par contre, il est possible que ce soit parce que j'avais installé windows 7 depuis plusieurs jours sur la machine virtuelle sans l'avoir activé. Autrement je ne vois pas d'explication. Je vais voir si je peux supprimer ce composant (je n'utilise plus wintoolkit mais NTLite) puisqu'il me parait inutile dans toutes mes installations. Bon en tout cas si c'est normal ça me rassure, merci^^. J'ai constaté sur mon pc fixe, pourtant plus mis à jour depuis quelques mois, qu'un mouchard était installé (un certain "Diagnostics Tracking Service") et depuis je fouille le système pour virer ces trucs. Quote Link to comment Share on other sites More sharing options...
mooms Posted November 8, 2015 Share Posted November 8, 2015 Merci pour l'info sur le mouchard, c'est désactivéhttp://korben.info/diagnostics-tracking-service.htmlJe crois que la seule solution pour éviter les mouchards c'est...GNU/Linux ! Quote Link to comment Share on other sites More sharing options...
mooms Posted November 8, 2015 Share Posted November 8, 2015 Tiens, après avoir redémarré Windows, mon pare-feu m'alerte que l’application diagtrackrunner.exe cherche à établir une connexion...alors que j'ai justement désactivé le service ! J'ai trouvé ça en faisant des recherches sur le processus: Voici la procédure pour supprimer ou désactiver les mouchards de Windows 71-ouvrez le planificateur de taches2- Dans le volet de gauche, sélectionnez le répertoire : Microsoft/Windows/CustomerExperience cliquer sur : Customer Improvement Program pour l'ouvrirdésactiver Consolidator KernelCeipTask Uploader USBCeipVous pouvez voir la description de ces quatres services dans le volet du centreinférieur des boîtes de dialogues. 3- Maintenant rendez-vous dans Application Experiencedésactiver AitAgent microsoft compatibility ProgramDataUpdater4- Ouvrez maintenant le répertoire DiskDiagnosticdésactiverMicrosoft-Windows-DiskDiagnosticDataCollector.5- Pour ceux qui ont un ordinateur portable (Laptop) il faudra aller dans le dernierrépertoire au bas qui est nommé WPDdésactiver SqmUpload_S-1-5-21-3244633361-4016055161-2943779436-1000si la tache est présente ! annuler ces services ne rendra pas votre système vulnérable Quote Link to comment Share on other sites More sharing options...
zimxavier Posted November 8, 2015 Share Posted November 8, 2015 (edited) En effet... Du coup, je l'ai écrit en batch. Vous pouvez coller ce qui est en bleu dans un fichier .bat (éditable avec un éditeur de texte) :(remarque : pour que la fenêtre se ferme à la fin de l'opération sans intervention, enlever la ligne "pause")(remarque 2 : pour réactiver la tâche planifiée, remplacez Disable par Enable)(remarque 3 : l'absence préalable d'une des tâches ou services ne pose aucun problème) SOLUTION A : Désactivation des tâches planifiées et services @echo --- DESACTIVATION DES MOUCHARDS ---@echo - De WindowsSchTasks /change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /DisableSchTasks /change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /DisableSchTasks /change /TN "Microsoft\Windows\Customer Experience Improvement Program\Uploader" /DisableSchTasks /change /TN "Microsoft\Windows\Customer Experience Improvement Program\USBCeip" /DisableSchTasks /change /TN "Microsoft\Windows\Application Experience\AitAgent" /DisableSchTasks /change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /DisableSchTasks /change /TN "Microsoft\Windows\Application Experience\ProgramDataUpdater" /DisableSchTasks /change /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /Disable@echo - Si PC portableSchTasks /change /TN "WPD/SqmUpload_S-1-5-21-3244633361-4016055161-2943779436-1000" /Disable@echo - Si Office 2010SchTasks /change /TN "OfficeSoftwareProtectionPlatform/SvcRestart task" /Disable@echo - Si Office 2007 ou 2003SchTasks /change /TN "Microsoft/Office Genuine Advantage\OGALogon" /Disable@echo - ARRET IMMEDIAT de Diagnostics Tracking Service (KB3022345)sc stop DiagTrack@echo - LANCEMENT DESACTIVE de Diagnostics Tracking Service (KB3022345)sc config DiagTrack start= disabledpause SOLUTION B : Suppression des tâches planifiées et services (LA SUPPRESSION EST DEFINITIVE !) @echo --- SUPPRESSION DES MOUCHARDS ---@echo - De WindowsSchTasks /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /Delete /fSchTasks /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /Delete /fSchTasks /TN "Microsoft\Windows\Customer Experience Improvement Program\Uploader" /Delete /fSchTasks /TN "Microsoft\Windows\Customer Experience Improvement Program\USBCeip" /Delete /fSchTasks /TN "Microsoft\Windows\Application Experience\AitAgent" /Delete /fSchTasks /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /Delete /fSchTasks /TN "Microsoft\Windows\Application Experience\ProgramDataUpdater" /Delete /fSchTasks /TN "Microsoft\Windows\DiskDiagnostic\Microsoft-Windows-DiskDiagnosticDataCollector" /Delete /f@echo - Si PC portableSchTasks /TN "WPD/SqmUpload_S-1-5-21-3244633361-4016055161-2943779436-1000" /Delete /f@echo - Si Office 2010SchTasks /TN "OfficeSoftwareProtectionPlatform/SvcRestart task" /Delete /f@echo - Si Office 2007 ou 2003SchTasks /TN "Microsoft/Office Genuine Advantage\OGALogon" /Delete /f@echo - ARRET IMMEDIAT de Diagnostics Tracking Service (KB3022345)sc stop DiagTrack@echo - SUPPRESSION de Diagnostics Tracking Service (KB3022345)sc delete DiagTrackpause Edited November 9, 2015 by zimxavier mooms 1 Quote Link to comment Share on other sites More sharing options...
mooms Posted November 8, 2015 Share Posted November 8, 2015 C'est super ça, il faudrait le compléter avec tous les autres mouchards connus et en faire un exe à lancer au 1er démarrage ! Quote Link to comment Share on other sites More sharing options...
zimxavier Posted November 9, 2015 Share Posted November 9, 2015 (edited) Oui c'est l'idée. Ceci étant, ça reste tout aussi fonctionnel sur une machine déjà installée et mise à jour par Windows Update. J'ai édité mon batch pour apporter des précisions et ajouter le service Diagnostics Tracking Service obtenu par installation de la KB3022345. Si vous en connaissez d'autres, n'hésitez pas à me le dire :beerchug: Edited November 9, 2015 by zimxavier Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 (edited) Hello,Voici ce que donne le Patch Tuesday d'hier (identique x64 et x86) :IE 11 : KB3100773 remplace KB3093983 (EDIT : apparemment uniquement sur les systèmes non anglais).net FW 3.5.1 KB3097989 remplace KB2979570Updates : KB3081320 remplace KB3067505KB3092601 remplace KB2961072 et KB3014406KB3097877 remplace KB3070102 et KB3095649 --> attention, il faut utiliser la nouvelle version du 12/11 !!KB3100213 remplace KB3069114KB3101246 remplace KB3067505KB3101722 KB3101746 remplace KB3067505, KB3081320 et KB3101246KB3107998 remplace KB3045645 et KB2820331 (x64)W10 / télémétrie : KB3102810 passe prioritaire EDIT : après test il s'avère que KB3081320 et KB3101246 sont remplacées par KB3101746... alors qu'elle est parue en même temps.Si vous n'installez pas IE 11 KB3093983 avant KB3100773, il peut y avoir des bugs au niveau des paramètres d'IE 11 (fichiers langues non mis à jour). Edited November 12, 2015 by rhahgleuhargh Quote Link to comment Share on other sites More sharing options...
Thiersee Posted November 11, 2015 Share Posted November 11, 2015 Hi, KB3097877 remplace KB3070102and KB3095649 (optional from 21-10-2015, look at post #907). IE 11 : KB3100773 remplace KB3093983Have a look here (from post #10183 onwards). KB3101246 & KB3081320 have been uninstalled as superseded by DeepClean. I did NOT update my working PC, Only a VM. Thiersee Quote Link to comment Share on other sites More sharing options...
wela Posted November 11, 2015 Share Posted November 11, 2015 @rhahgleuhargh Hi Google translation french - german is horrible. Do i understand right: 3081320 and 3101746 are Runonce? :questionmark: :questionmark: 3101246 is normal integratable?Thanks for your answer Quote Link to comment Share on other sites More sharing options...
Thiersee Posted November 11, 2015 Share Posted November 11, 2015 Hi wela, if you are registered on MDL have a look at the link in my previous post.Anyway, MS says athttps://technet.microsoft.com/en-us/library/security/ms15-122 note [1]the three KBs should be installed in that order: KB3101246, KB3081320, KB3101746.But after a DeepClean KB3101246 & KB3081320 are uninstalled as superseded... Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 @wela,I'm currently testing an integration !To my opinion, there will be no need to integrate KB3081320 and 3101246 since they seem to be superseded by KB3101746 (they are deleted via deep-clean in all my VM). But M$ recommend to integrate them in this order : 1 KB3101246 2 KB3081320 3 KB3101746. All are integrable offline but there will be a bug if not integrated in this order.@Thiersee,Oops, missed this post in MDL. I'll put back KB3093983. Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 @Thiersee,You just posted when I was writing my post ! Quote Link to comment Share on other sites More sharing options...
wela Posted November 11, 2015 Share Posted November 11, 2015 To my opinion, there will be no need to integrate KB3081320 and 3101246 since they seem to be superseded by KB3101746 (they are deleted via deep-clean in all my VM). But M$ recommend to integrate them in this order : 1 KB3101246 2 KB3081320 3 KB3101746. All are integrable offline but there will be a bug if not integrated in this order What a mess :nunchaku: Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 @wela,it's now usual with M$ updates !IE 11 update is cumulative only for english systems.for the 3 updates, only KB3101746 seems to be needed, I'll report after my test. Quote Link to comment Share on other sites More sharing options...
Thiersee Posted November 11, 2015 Share Posted November 11, 2015 .....@Thiersee,Oops, missed this post in MDL. I'll put back KB3093983. No problem! I updated yesterday a VM (german, x64 prof) and I saw for a moment in the programs two position for IE11:the normal one (Ibternet Explorer) and a second one (Internet Explorer 64bit (without AddOn)); after restart disappeared the 2nd one. BTW, the update on my test-HW has just finished: stay online, I can tell you the result in, let say, 10 min. here the results:DeepClean uninstalled KB2820331KB2961072KB2979570KB3014406KB3045645KB5069114KB3081320KB3088195KB3101246 If the list of the installed updates represents the real install-order, then it is NOT true, what MS says on the bulletin MS15-122 (and the other two related) in the note [1] "Windows is taking care to install in the right order" But the worst problem for me is that Teamviewer crashes, no matter if stable or BETA or which version: because of that I will NOT update, until I have an explanation! Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 @Thiersee,I had the same result after update in my VMs (ISO from last month updated via WU).My updated x64 ISO preparation is still running I'll report eventual bugs after new install.I'll do the x86 integration without KB3101246 and KB3082310 and keeping previous IE 11 update.I don't use Teamviewer, I can't report anything about it. Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 Je confirme que KB3081820 et KB3101246 sont supprimées au deep-clean sur une installation fraîche après intégration dans l'ordre correct. On va pouvoir les virer de la liste !A vue de nez, pas de souci sur IE 11 avec seulement la dernière mise à jour cumulative intégrée.Je commence mon test d'intégration en x86 sans les 2 KBs. Quote Link to comment Share on other sites More sharing options...
Thiersee Posted November 11, 2015 Share Posted November 11, 2015 But the worst problem for me is that Teamviewer crashes, no matter if stable or BETA or which version: because of that I will NOT update, until I have an explanation! I found the culprit: KB3097877 :ranting:!After uninstalling it TeamViewer works again. The question is now, if the System can stay without thi update. Thiersee Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 11, 2015 Author Share Posted November 11, 2015 @Thiersee,2 solutions : if other programs hang because of this update, M$ will correct it ; if not, Teamviewer will have to be updated.Is there any support for this soft ? Quote Link to comment Share on other sites More sharing options...
Thiersee Posted November 11, 2015 Share Posted November 11, 2015 @Thiersee,2 solutions : if other programs hang because of this update, M$ will correct it ; if not, Teamviewer will have to be updated.Is there any support for this soft ?Of course, there is a support, the software is only for personal and not commercial use free, otherwise it costs 499 €!I wrote an email to the support. Quote Link to comment Share on other sites More sharing options...
rhahgleuhargh Posted November 12, 2015 Author Share Posted November 12, 2015 @Thiersee,You're not the only one to encounter problems after this update. Example here.I'll remove KB3097877 from UL until the bug is solved. Quote Link to comment Share on other sites More sharing options...
wela Posted November 12, 2015 Share Posted November 12, 2015 (edited) Hi to all MS released a corrected version of 3097877 today. hope it helps. I downloaded it from catalog.update. addition:Now is WU on my Laptop with a corrected Version activ. Edited November 12, 2015 by wela Quote Link to comment Share on other sites More sharing options...
Thiersee Posted November 12, 2015 Share Posted November 12, 2015 (edited) Yes, with the new release it works again!Tested in a VM and on a real HW in Italy (TeamViewer). @rhahgleuhargh:you can put the new release of KB3097877 back in the UL . Edited November 12, 2015 by Thiersee Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.