msu补丁静默安装命令
时间: 2024-02-26 20:50:37 浏览: 226
静默安装。cmd
MSU补丁是Windows操作系统中的一种更新文件,用修复系统漏洞和提供新功能。静默安装是指在不需要用户交互的情况下自动安装补丁。以下是MSU补丁的静默安装命令:
1. 使用wusa命令:
wusa.exe <补丁文件路径> /quiet /norestart
示例:
wusa.exe C:\Patch\KB123456.msu /quiet /norestart
2. 使用Powershell命令:
Start-Process -FilePath "wusa.exe" -ArgumentList "<补丁文件路径> /quiet /norestart" -Wait
示例:
Start-Process -FilePath "wusa.exe" -ArgumentList "C:\Patch\KB123456.msu /quiet /norestart" -Wait
请注意,上述命令中的"<补丁文件路径>"需要替换为实际的MSU补丁文件路径。
阅读全文