forked from swoole/swoole-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bdfb88
commit ffff11c
Showing
2 changed files
with
20 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
|
||
|
||
|
||
|
||
```shell | ||
|
||
curl -fSLo EpicGamesLauncher.dmg https://launcher-public-service-prod06.ol.epicgames.com/launcher/api/installer/download/EpicGamesLauncher.dmg?productName=unrealEngine | ||
|
||
``` | ||
|
||
[Unreal Swarm](https://dev.epicgames.com/documentation/zh-cn/unreal-engine/unreal-swarm-in-unreal-engine) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## exe 安装包参数 | ||
|
||
/S : 静默安装 | ||
/D :指定安装路径 | ||
|
||
## msi 安装包参数 | ||
|
||
/quiet 安静模式,无用户交互 | ||
/passive 无人参与模式 - 只显示进度栏 | ||
/q[n|b|r|f] 设置用户界面级别 | ||
n - 无用户界面 | ||
b - 基本界面 | ||
r - 精简界面 | ||
f - 完整界面 ( 默认值 ) | ||
/norestart 安装完成后不重新启动 | ||
/promptrestart 必要时提示用户重新启动 | ||
/forcerestart 安装后始终重新启动计算机 |