我有Win7AndW2K8R2-KB3134760-x64的MSU,其中包含PowerShell 5.0的更新
我有一个带有以下内容的批处理文件以静默模式运行MSU,但是当我运行它时,它会调出CMD窗口,然后快速关闭。
@echo off
start /wait ".\Win7AndW2K8R2-KB3134760-x64.msu" /quiet /norestart
答案 0 :(得分:0)
试试这个
@echo off
start "" /wait "Win7AndW2K8R2-KB3134760-x64.msu" /quiet /norestart