From d58c61591c42e1deacb01976b004c9d9d864d3b3 Mon Sep 17 00:00:00 2001 From: Starccy <452276725@qq.com> Date: Mon, 11 Mar 2019 13:24:53 +0800 Subject: [PATCH] iscc: add Chinese translation --- pages.zh/windows/iscc.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages.zh/windows/iscc.md diff --git a/pages.zh/windows/iscc.md b/pages.zh/windows/iscc.md new file mode 100644 index 0000000000..a75a16f57b --- /dev/null +++ b/pages.zh/windows/iscc.md @@ -0,0 +1,16 @@ +# iscc + +> Inno Setup安装程序的编译器. +> 它将Inno Setup脚本编译为Windows安装程序可执行文件. + +- 编译一个Inno Setup脚本: + +`iscc {{脚本路径.iss}}` + +- 静默编译一个Inno Setup安装程序: + +`iscc /Q {{脚本路径.iss}}` + +- 编译已签名的Inno Setup安装程序: + +`iscc /S={{名称}}={{命令}} {{脚本路径.iss}}`