================================================================
RelayWay — Windows ZIP deployment  /  Windows 压缩包部署说明
================================================================

----------------------------------------------------------------
1) Windows blocked / warned about the app?
   Windows 拦截或警告了本应用?
----------------------------------------------------------------

ENGLISH
These files may be SELF-SIGNED (not signed by a paid public
certificate authority). They are NOT malware — Windows SmartScreen
and some antivirus tools simply distrust any app they have not seen
signed by a well-known CA yet. Two ways to run it:

  A. Unblock the files (recommended for a ZIP download):
     Windows tags files downloaded from the internet as "blocked".
     1. Right-click the .exe (and vc_redist.x64.exe).
     2. Choose "Properties".
     3. At the bottom of the General tab, tick "Unblock".
     4. Click OK, then run the app.
     (To unblock everything at once in PowerShell:
        Get-ChildItem -Recurse | Unblock-File )

  B. If a blue "Windows protected your PC" SmartScreen box appears:
     1. Click "More info".
     2. Click "Run anyway".

  If your antivirus quarantines the app, restore it / add an
  exclusion for this folder. A self-signed build trips heuristic
  "unknown publisher" flags; it is the same binary our CI produced.

中文
这些文件可能是「自签名」(未由付费的公共 CA 证书签名)。它们不是病毒
—— 只是 Windows SmartScreen 和部分杀毒软件对尚未被知名 CA 签名的程序
一律不信任。两种运行方式:

  A. 解除文件锁定(压缩包下载推荐):
     Windows 会给从网络下载的文件打上「已阻止」标记。
     1. 右键点击 .exe(以及 vc_redist.x64.exe)。
     2. 选择「属性」。
     3. 在「常规」选项卡底部勾选「解除锁定」。
     4. 点「确定」,再运行应用。
     (在 PowerShell 中一次性解除全部锁定:
        Get-ChildItem -Recurse | Unblock-File )

  B. 若出现蓝色「Windows 已保护你的电脑」SmartScreen 提示:
     1. 点击「更多信息」。
     2. 点击「仍要运行」。

  若杀毒软件隔离了本应用,请恢复它 / 为本文件夹添加信任(白名单)。
  自签名构建会触发「未知发布者」启发式告警,但它与我们 CI 产出的是
  同一个二进制文件。

----------------------------------------------------------------
2) App fails to launch: "VCRUNTIME140_1.dll" / "MSVCP140.dll"?
   应用无法启动,提示缺少 VCRUNTIME140_1.dll / MSVCP140.dll?
----------------------------------------------------------------

ENGLISH
Run vc_redist.x64.exe (in this folder) ONCE to install the Microsoft
Visual C++ Redistributable 2015-2022. After that the app launches
normally and you may delete vc_redist.x64.exe. (Installing the
runtime needs administrator rights — ask an admin if prompted.)

中文
运行本文件夹中的 vc_redist.x64.exe 一次,以安装 Microsoft Visual C++
运行库 2015-2022。之后应用即可正常启动,可删除 vc_redist.x64.exe。
(安装运行库需要管理员权限,若有提示请联系管理员。)

----------------------------------------------------------------
The full installer (RelayWay-Setup.exe) handles both of the above
automatically, and now also supports installing WITHOUT administrator
rights (it installs just for the current user).
完整安装包 (RelayWay-Setup.exe) 会自动处理以上两点,并且现已支持在
「无管理员权限」下安装(仅为当前用户安装)。
