Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
pub:windows_update [2021/11/29 20:08] – [Abc-update] derek | pub:windows_update [2024/02/22 07:28] (current) – removed derek | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | == windows update | ||
- | |||
- | === windows 11 | ||
- | |||
- | * https:// | ||
- | |||
- | === windows 10 update | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | === CMD update | ||
- | |||
- | wuauclt /detectnow /updatenow | ||
- | |||
- | === Powershell update | ||
- | |||
- | <code powershell> | ||
- | |||
- | # install 3rd party module | ||
- | Install-Module PSWindowsUpdate | ||
- | |||
- | # also install other microsoft products | ||
- | Add-WUServiceManager -MicrosoftUpdate | ||
- | |||
- | # scan for updates | ||
- | |||
- | Get-WindowsUpdate | ||
- | |||
- | # install updates and reboot | ||
- | Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot | ||
- | |||
- | Install-WindowsUpdate | ||
- | |||
- | </ | ||
- | |||
- | |||
- | |||
- | |||
- | === Abc-update | ||
- | * https:// | ||
- | |||
- | mkdir c: | ||
- | wget https:// | ||
- | 7z x ABC-Update.zip | ||
- | echo abc-update.exe /a:install /r:5 > auto-winupdate.bat | ||
- | nircmd shortcut " | ||
- | |||
- | === WuMgr (obsoleted) | ||
- | * https:// | ||
- | |||
- | choco install wumgr | ||
- | echo wumgr -update > %USERPROFILE%\Desktop\Wumgr-Update.bat | ||
- | |||
- | == windows update problems | ||
- | |||
- | Fix Windows Update errors by using the DISM or System Update Readiness tool | ||
- | * [[https:// | ||
- | |||
- | === windows 7/2008R2 | ||
- | |||
- | * install SP1 | ||
- | * install KB3042058 Update to default cipher suite priority order | ||
- | * install KB3020369 Windows Update Client for Windows 7 and Windows Server 2008 R2: March 2016 | ||
- | * install KB3138612 Fix slow Windows update | ||
- | * install KB3125574 Convenience rollup | ||
- | |||
- | clean up | ||
- | * stop Windows Update service | ||
- | * delete %windir%\SoftwareDistribution\DataStore | ||