📌  相关文章
📜  静默安装 google chrome - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:15.411000             🧑  作者: Mango

代码示例1
# This assumes you have the msi located in the script directory

# Batch
msiexec /i googlechromeenterprise64.msi /qn

# Powershell
Start-Process .\googlechromeenterprise64.msi -ArgumentList "/qn" -Wait