diff --git a/README.md b/README.md index e85729d73..4827550a7 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Hosted version: ```shell brew install wiretrustee/client/wiretrustee ``` -**Installation from binary** +**Installation from binary** 1. Checkout Wiretrustee [releases](https://github.com/wiretrustee/wiretrustee/releases/latest) 2. Download the latest release (**Switch VERSION to the latest**): ```shell @@ -138,10 +138,15 @@ Hosted version: sudo mv wiretrusee /usr/local/bin/wiretrustee chmod +x /usr/local/bin/wiretrustee ``` -After that you may need to add /usr/local/bin in your MAC's PATH environment variable: +After that you may need to add /usr/local/bin in your PATH environment variable: ````shell export PATH=$PATH:/usr/local/bin ```` +4. Install and run the service +```shell + sudo wiretrustee service install + sudo wiretrustee service start +``` #### Windows 1. Checkout Wiretrustee [releases](https://github.com/wiretrustee/wiretrustee/releases/latest) diff --git a/client/installer.nsis b/client/installer.nsis index 9064fa9a4..7dbd21ad9 100644 --- a/client/installer.nsis +++ b/client/installer.nsis @@ -97,6 +97,7 @@ EnVar::SetHKLM EnVar::AddValueEx "path" "$INSTDIR" Exec '"$INSTDIR\${MAIN_APP_EXE}" service install' +Exec '"$INSTDIR\${MAIN_APP_EXE}" service start' # sleep a bit for visibility Sleep 1000 SectionEnd