命令行更新Windows
- cmd执行Windows update更新
- 1.检查更新
- 2.下载 Windows Update 更新
- 3.安装更新
- 4.安装更新后重新启动设备
- powershell命令行更新
- 安装PSWindowsUpdate
- 检查PSWindowsUpdate是否已安装
- 导入模块
- 查看支持的参数
- 0.检查更新
- 1.只下载更新
- 2.安装下载好的 Windows Update 更新
- 隐藏指定kb更新
- win10以下版本os命令行更新
- 1.检查更新
- 2.安装检测到的更新
cmd执行Windows update更新
UsoClient
是Windows自带的命令行更新工具。
一条命令
下载并安装Windows更新
# 扫描、下载并安装 Windows 更新
UsoClient ScanInstallWait
1.检查更新
# 扫描 Windows 更新
UsoClient StartScan
2.下载 Windows Update 更新
# 下载 Windows Update 更新
UsoClient StartDownload
3.安装更新
# 安装更新
UsoClient StartInstall
4.安装更新后重新启动设备
# 安装更新后重新启动设备
UsoClient RestartDevice
powershell命令行更新
https://www.sysgeek/windows-10-update-command/
安装PSWindowsUpdate
PSWindowsUpdate全称:Windows Update module for Windows Powershell
# 安装 Windows Update module for Windows Powershell:
## -Force强制安装最新版,可以用来升级
Install-Module PSWindowsUpdate -Force
检查PSWindowsUpdate是否已安装
# 检查包
Get-Package -Name PSWindowsUpdate
导入模块
# 导入模块
Import-Module PSWindowsUpdate
查看支持的参数
参考:https://github/mgajda83/PSWindowsUpdate
# 查看该模块支持的参数
Get-Command -Module PSWindowsUpdate
0.检查更新
# 检查更新
Get-WindowsUpdate
1.只下载更新
# 连接到 Windows Update 服务器并下载更新(如果有):
Get-WindowsUpdate –Download
2.安装下载好的 Windows Update 更新
实测该命令可以下载并安装更新
# 安装下载好的 Windows Update 更新
Install-WindowsUpdate
# 安装所有可用更新(需要管理员权限)
Install-WindowsUpdate -AcceptAll
隐藏指定kb更新
# 隐藏 KBArticleID 为:KB4034658 的更新
Get-WindowsUpdate -KBArticleID KB4034658 -Hide -Verbose
# 或
Hide-WindowsUpdate -KBArticleID KB4034658 -Verbose
win10以下版本os命令行更新
一条命令
下载并安装Windows更新
# 检查和安装更新
wuauclt /detectnow /updatenow
1.检查更新
# 检查更新
wuauclt /detectnow
2.安装检测到的更新
# 安装检测到的更新
wuauclt /updatenow
命令行更新Windows
- cmd执行Windows update更新
- 1.检查更新
- 2.下载 Windows Update 更新
- 3.安装更新
- 4.安装更新后重新启动设备
- powershell命令行更新
- 安装PSWindowsUpdate
- 检查PSWindowsUpdate是否已安装
- 导入模块
- 查看支持的参数
- 0.检查更新
- 1.只下载更新
- 2.安装下载好的 Windows Update 更新
- 隐藏指定kb更新
- win10以下版本os命令行更新
- 1.检查更新
- 2.安装检测到的更新
cmd执行Windows update更新
UsoClient
是Windows自带的命令行更新工具。
一条命令
下载并安装Windows更新
# 扫描、下载并安装 Windows 更新
UsoClient ScanInstallWait
1.检查更新
# 扫描 Windows 更新
UsoClient StartScan
2.下载 Windows Update 更新
# 下载 Windows Update 更新
UsoClient StartDownload
3.安装更新
# 安装更新
UsoClient StartInstall
4.安装更新后重新启动设备
# 安装更新后重新启动设备
UsoClient RestartDevice
powershell命令行更新
https://www.sysgeek/windows-10-update-command/
安装PSWindowsUpdate
PSWindowsUpdate全称:Windows Update module for Windows Powershell
# 安装 Windows Update module for Windows Powershell:
## -Force强制安装最新版,可以用来升级
Install-Module PSWindowsUpdate -Force
检查PSWindowsUpdate是否已安装
# 检查包
Get-Package -Name PSWindowsUpdate
导入模块
# 导入模块
Import-Module PSWindowsUpdate
查看支持的参数
参考:https://github/mgajda83/PSWindowsUpdate
# 查看该模块支持的参数
Get-Command -Module PSWindowsUpdate
0.检查更新
# 检查更新
Get-WindowsUpdate
1.只下载更新
# 连接到 Windows Update 服务器并下载更新(如果有):
Get-WindowsUpdate –Download
2.安装下载好的 Windows Update 更新
实测该命令可以下载并安装更新
# 安装下载好的 Windows Update 更新
Install-WindowsUpdate
# 安装所有可用更新(需要管理员权限)
Install-WindowsUpdate -AcceptAll
隐藏指定kb更新
# 隐藏 KBArticleID 为:KB4034658 的更新
Get-WindowsUpdate -KBArticleID KB4034658 -Hide -Verbose
# 或
Hide-WindowsUpdate -KBArticleID KB4034658 -Verbose
win10以下版本os命令行更新
一条命令
下载并安装Windows更新
# 检查和安装更新
wuauclt /detectnow /updatenow
1.检查更新
# 检查更新
wuauclt /detectnow
2.安装检测到的更新
# 安装检测到的更新
wuauclt /updatenow