Update windows installer and docs

Update binary installation docs
Add service start in Windows installer
This commit is contained in:
Mikhail Bragin 2022-03-11 14:05:44 +01:00 committed by GitHub
parent be0c5c887c
commit a3a6283ac6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -138,10 +138,15 @@ Hosted version:
sudo mv wiretrusee /usr/local/bin/wiretrustee sudo mv wiretrusee /usr/local/bin/wiretrustee
chmod +x /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 ````shell
export PATH=$PATH:/usr/local/bin export PATH=$PATH:/usr/local/bin
```` ````
4. Install and run the service
```shell
sudo wiretrustee service install
sudo wiretrustee service start
```
#### Windows #### Windows
1. Checkout Wiretrustee [releases](https://github.com/wiretrustee/wiretrustee/releases/latest) 1. Checkout Wiretrustee [releases](https://github.com/wiretrustee/wiretrustee/releases/latest)

View File

@ -97,6 +97,7 @@ EnVar::SetHKLM
EnVar::AddValueEx "path" "$INSTDIR" EnVar::AddValueEx "path" "$INSTDIR"
Exec '"$INSTDIR\${MAIN_APP_EXE}" service install' Exec '"$INSTDIR\${MAIN_APP_EXE}" service install'
Exec '"$INSTDIR\${MAIN_APP_EXE}" service start'
# sleep a bit for visibility # sleep a bit for visibility
Sleep 1000 Sleep 1000
SectionEnd SectionEnd