Windows Update repoussé jusqu'au 13 mai 2025
Fermébrucine Messages postés 19120 Date d'inscription lundi 22 février 2021 Statut Membre Dernière intervention 20 février 2025 - 31 oct. 2022 à 21:59
- Windows Update repoussé jusqu'au 13 mai 2025
- Nostradamus 2025 - Guide
- Windows update 0x80070643 - Accueil - Windows
- Windows update bloqué - Guide
- Clé windows 10 gratuit - Guide
- Montage video windows - Guide
2 réponses
31 oct. 2022 à 15:57
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.
Modifié le 31 oct. 2022 à 16:40
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
31 oct. 2022 à 16:12
Bonjour,
Sur le point 1, il faut aussi désactiver les services Medic et Orchestrator et les tâches planifiées à Microsoft-Windows Update
31 oct. 2022 à 16:26
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 ...
31 oct. 2022 à 21:59
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.