mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-26 03:35:30 +03:00
Merge pull request #1068 from tete1030/fix-win-service-imagepath
Fix unquoted windows service image path
This commit is contained in:
commit
6a1bcb9dd6
2
dist/inno/barrier.iss.in
vendored
2
dist/inno/barrier.iss.in
vendored
@ -54,7 +54,7 @@ Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks:
|
||||
; to avoid duplicate entries remove the existing rule (fails if it doesn't exist) before adding
|
||||
Filename: {sys}\netsh.exe; Parameters: "advfirewall firewall delete rule name=""{#MyAppListenerDesc}"""; Flags: runhidden
|
||||
Filename: {sys}\netsh.exe; Parameters: "advfirewall firewall add rule name=""{#MyAppListenerDesc}"" protocol=TCP dir=in localport=24800 action=allow"; Flags: runhidden
|
||||
Filename: {sys}\sc.exe; Parameters: "create {#MyAppServiceName} start= auto binPath= ""{app}\{#MyAppServiceExe}"""; Flags: runhidden
|
||||
Filename: {sys}\sc.exe; Parameters: "create {#MyAppServiceName} start= auto binPath= ""\""{app}\{#MyAppServiceExe}\"""""; Flags: runhidden
|
||||
Filename: {sys}\sc.exe; Parameters: "description {#MyAppServiceName} ""{#MyAppServiceDesc}"""; Flags: runhidden
|
||||
Filename: {sys}\sc.exe; Parameters: "start {#MyAppServiceName}"; Flags: runhidden
|
||||
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||||
|
1
doc/newsfragments/windows-service-path.bugfix
Normal file
1
doc/newsfragments/windows-service-path.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fixed incorrect setup of Barrier service path on Windows.
|
Loading…
Reference in New Issue
Block a user