Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
обновления_windows [2022/10/26 16:28] – jp | обновления_windows [2025/10/01 07:06] (current) – jp |
---|
===== Обновления Windows ===== | ===== Обновления Windows ===== |
| |
Скрипт сброса настроек клиента Windows Update: | === Скрипт сброса настроек клиента Windows Update === |
| |
https://gallery.technet.microsoft.com/scriptcenter/Reset-Windows-Update-Agent-d824badc | https://gallery.technet.microsoft.com/scriptcenter/Reset-Windows-Update-Agent-d824badc |
<code> | <code> |
Get-WindowsUpdateLog -logpath C:\PS\Logs\WindowsUpdate.log | Get-WindowsUpdateLog -logpath C:\PS\Logs\WindowsUpdate.log |
| </code> |
| |
| === Обновление Windows 11 до 25H2 в одну команду === |
| |
| Установить обновление 25H2 очень просто и быстро, достаточно запустить команду и перезагрузиться (установка занимает считанные минуты). |
| |
| <code> |
| Invoke-WebRequest -Uri "https://catalog.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/fa84cc49-18b2-4c26-b389-90c96e6ae0d2/public/windows11.0-kb5054156-x64_a0c1638cbcf4cf33dbe9a5bef69db374b4786974.msu" -OutFile "$env:TEMP\kb5054156.msu"; Start-Process "wusa.exe" -ArgumentList "$env:TEMP\kb5054156.msu /quiet /norestart" -Wait; $choice = Read-Host "Обновление установлено. Перезагрузить сейчас? (y/n)"; if ($choice -eq "y") { Restart-Computer -Force } |
</code> | </code> |
| |
{{tag>Microsoft Windows10 WindowsServer}} | {{tag>Microsoft Windows10 WindowsServer}} |