对于 32 位和 64 位,我使用以下命令行:
vcredist_2010_x64.exe /q:a /c:"msiexec /i vcredist.msi /qn /l*v %temp%\vcredist_x86.log"
应用程序将安装,但需要我手动接受 32/64 位版本的条款。有没有办法让应用程序通过命令行接受?
答案1
尝试将 /quiet 作为参数添加到命令行。
编辑:vcredist_2010_x64.exe /q:a /c:“msiexec /i vcredist.msi /qn /quiet /l*v %temp%\vcredist_x86.log”