Windows Update repoussé jusqu'au 13 mai 2025

Walti55 -  
brucine Messages postés 25024 Date d'inscription   Statut Membre Dernière intervention   -

Bonjour à Mesdames & Messieurs - MEMBRES de CCM,

Sur mon PC Lenovo Thinkpad T440 sous Windows 10 Pro 64, j'ai pris la décision de désactiver définitivement les mises à jours de Windows Uodate.10 Pro 64

Cependant, cella n'a pas fonctionné en désactivant dans les Services : Windows Update, car 48 heures après ma désactivation, il se remettait automatiquement actif, se qui ne me convenait pas.

.

Dans les Paramètres sous Windows Update et dans les options avancées, j'ai " découvert " que j'ai pu désactiver les mises à jours jusqu'au : 13 mai 2025 . . . OUI , jusqu'au 13 mai 2025 , soit pendant :

=====> 2 ans, 6 mois et 13 jours !

.

Il vous est demandé, CCM 'S  MEMBRES, de bien vouloir me transmettre vos remarques sur ces 2 Points, soit  :

.

-- 1. Pourquoi je ne pouvais pas désactiver définitivement les Mise à jours, en désactivant dans les Services : Windows Update ?

-- 2. Comment se fait-il qu'il m'a été possible de les désactiver manuellement jusqu'au : 13 mai 2025 ?

.

Merci d'avance de vos réponses uniquement à ces 2 Points, en tenant compte que je n'ai pas besoin d'être informé de " Respecter les Mises à jours " !

.

Cordiales et Sincères Salutations aux  CCM 'S Administrateurs(trices) ainsi qu'à tous les MEMBRES et FUTURS MEMBRES

Walti55

2 réponses

  1. bazfile Messages postés 58518 Date d'inscription   Statut Modérateur Dernière intervention   20 278
     

    Bonjour.

    Sacré pavé ! réponse courte, Windows 10 ne bénéficiera plus du support de Microsoft courant 2025 ce qui signifie qu'il n'y aura plus de mises à jour.


    0
    1. brucine Messages postés 25024 Date d'inscription   Statut Membre Dernière intervention   4 181
       

      Bonjour,

      Sur le point 1, il faut aussi désactiver les services Medic et Orchestrator et les tâches planifiées à Microsoft-Windows Update

      0
      1. extempor Messages postés 2158 Date d'inscription   Statut Membre Dernière intervention   885 > brucine Messages postés 25024 Date d'inscription   Statut Membre Dernière intervention  
         

        Bonjour,

        il me semble qu'un point aussi est oublié ,il suffit de ne pas se connecter à Internet ainsi les MAJ sont gelées à perpète ...

        0
      2. brucine Messages postés 25024 Date d'inscription   Statut Membre Dernière intervention   4 181 > extempor Messages postés 2158 Date d'inscription   Statut Membre Dernière intervention  
         

        On peut très bien continuer à vouloir utiliser Internet sans mises à jour, la question n'est pas de savoir si c'est bien ou non, sans quoi d'ailleurs plus personne n'utiliserait XP ou Windows 7.

        0
  2. fabul Messages postés 42189 Date d'inscription   Statut Modérateur Dernière intervention   6 070
     

    Salut,

    Sur le point 1 il y a des tâches planifiées Update Orchestrator et Windows Update à désactiver pour faire fi des mises à jour automatiques

    Avec un fichier .bat , puis finir avec Autoruns après

     

    @echo off
    echo.
    :begin
    echo.
    echo.Supprimer/Restaurer les taches planifiees des mises a jour automatiques
    echo.
    echo.Option 1 = Supprimer les taches planifiees des mises a jour automatiques
    echo.Option 2 = Restaurer les taches planifiees des mises a jour automatiques
    echo.Option 3 = Quitter
    set choice=
    set /p choice=:
    if '%choice%'=='1' goto 1
    if '%choice%'=='2' goto 2
    if '%choice%'=='3' goto quit
    :1
    md "C:\Windows\System32\Tasks Backup\Microsoft\Windows\UpdateOrchestrator"
    md "C:\Windows\System32\Tasks Backup\Microsoft\Windows\WindowsUpdate"
    xcopy "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator" "C:\Windows\System32\Tasks Backup\Microsoft\Windows\UpdateOrchestrator"
    xcopy "C:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate" "C:\Windows\System32\Tasks Backup\Microsoft\Windows\WindowsUpdate"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_AC"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_Battery"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Report policies"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Maintenance Work"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan Static Task"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Wake To Work"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Work"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Start Oobe Expedite Work"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan_LicenseAccepted"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScanAfterUpdate"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UpdateModelTask"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\USO_UxBroker"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UUS Failover Task"
    del /s /f /a:h /a:S /a:r /a:- "C:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate\Scheduled Start"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_AC"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_Battery"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Report policies"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Maintenance Work"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan Static Task"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Wake To Work"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Work"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Start Oobe Expedite Work"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan_LicenseAccepted"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScanAfterUpdate"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UpdateModelTask"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\USO_UxBroker"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UUS Failover Task"
    md "C:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate\Scheduled Start"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_AC\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_Battery\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Report policies\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Maintenance Work\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan Static Task\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Wake To Work\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Work\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Start Oobe Expedite Work\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan_LicenseAccepted\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScanAfterUpdate\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UpdateModelTask\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\USO_UxBroker\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UUS Failover Task\NUL"
    type nul > "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate\Scheduled Start\NUL"
    @echo Succes!
    goto begin
    :2
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_AC"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Reboot_Battery"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Report policies"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Maintenance Work"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Scan Static Task"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Wake To Work"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Schedule Work"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\Start Oobe Expedite Work"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScan_LicenseAccepted"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\StartOobeAppsScanAfterUpdate"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UpdateModelTask"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\USO_UxBroker"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator\UUS Failover Task"
    rmdir /s /q "\\?\c:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate"
    xcopy "C:\Windows\System32\Tasks Backup\Microsoft\Windows\UpdateOrchestrator" "C:\Windows\System32\Tasks\Microsoft\Windows\UpdateOrchestrator"
    mkdir "C:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate"
    xcopy "C:\Windows\System32\Tasks Backup\Microsoft\Windows\WindowsUpdate" "C:\Windows\System32\Tasks\Microsoft\Windows\WindowsUpdate"
    @echo Succes!
    goto begin
    :quit

    Tu peux télécharger Autoruns 13.98 ici, (C'est la dernière version qui va bien) extraire tout, et l'exécuter en tant qu'administrateur par clic droit > Exécuter en tant qu'administrateur.

    https://www.cjoint.com/c/LGgmAC5oNPs

    Dans Options, décocher "Hide Windows Entries"

    Voir à décocher dans Scheduled Tasks pour les lignes avec 'Update Orchestrator" et "WindowsUpdate"

    Tu peux passer les services qui servent à WU en mode Manuel avec services.msc et continuer de faire tes mises à jour manuellement.

    Puis ce fichier .reg . et appelle ça good
     

    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionPoliciesExplorer]
    NoAutoUpdate=dword00000001
    
    [HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionPoliciesExplorerWAU]
    Disabled=dword00000001
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate]
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update]
    "Disabled"=dword:00000001
    "DontPromptForWindowsUpdate"=dword:00000001
    "NoAutoUpdate"=dword:00000001
    
    [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    
    [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
    "AUOptions"=dword:00000004
    "Disabled"=dword:00000001
    "NoAUAsDefaultShutdownOption"=dword:00000001
    "NoAUShutdownOption"=dword:00000001
    "NoAutoUpdate"=dword:00000001
    
    [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\Auto Update]
    "AUOptions"=dword:00000004
    "Disabled"=dword:00000001
    "NoAUAsDefaultShutdownOption"=dword:00000001
    "NoAUShutdownOption"=dword:00000001
    "NoAutoUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
    "DeferUpgrade"=dword:00000000
    "DeferUpgradePeriod"=dword:00000000
    "DeferUpdatePeriod"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
    "NoAutoUpdate"=dword:00000001
    "NoAutoRebootWithLoggedOnUsers"=dword:00000001
    "AUOptions"=dword:00000004
    "Disabled"=dword:00000001
    "NoAUAsDefaultShutdownOption"=dword:00000001
    "NoAUShutdownOption"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\Auto Update]
    "AUOptions"=dword:00000004
    "Disabled"=dword:00000001
    "NoAUAsDefaultShutdownOption"=dword:00000001
    "NoAUShutdownOption"=dword:00000001
    "NoAutoUpdate"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Policies\Explorer\WAU]
    "Disabled"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Policies\Microsoft\Windows\WindowsUpdate]
    "DeferUpgrade"=dword:00000000
    "DeferUpgradePeriod"=dword:00000000
    "DeferUpdatePeriod"=dword:00000000
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Policies\Microsoft\Windows\WindowsUpdate\AU]
    "NoAutoUpdate"=dword:00000001
    "NoAutoRebootWithLoggedOnUsers"=dword:00000001
    "AUOptions"=dword:00000004
    "Disabled"=dword:00000001
    "NoAUAsDefaultShutdownOption"=dword:00000001
    "NoAUShutdownOption"=dword:00000001
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Policies\Microsoft\Windows\WindowsUpdate\Auto Update]
    "AUOptions"=dword:00000004
    "Disabled"=dword:00000001
    "NoAUAsDefaultShutdownOption"=dword:00000001
    "NoAUShutdownOption"=dword:00000001
    "NoAutoUpdate"=dword:00000001 
    
    
    0