mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 23:20:24 +00:00
windows installer: fix exe name for service control
It worked before since Windows is case insensitive
This commit is contained in:
parent
4f0a936ca0
commit
4814786556
1 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@
|
||||||
AppId={{1FB9D57F-00DD-4B1B-8798-1138E5CE995D}
|
AppId={{1FB9D57F-00DD-4B1B-8798-1138E5CE995D}
|
||||||
AppName={#MyAppName}
|
AppName={#MyAppName}
|
||||||
AppVersion={#MyAppVersion}
|
AppVersion={#MyAppVersion}
|
||||||
;AppVerName={#MyAppName} {#MyAppVersion}
|
AppVerName={#MyAppName} {#MyAppVersion}
|
||||||
AppPublisherURL={#MyAppURL}
|
AppPublisherURL={#MyAppURL}
|
||||||
AppSupportURL={#MyAppURL}
|
AppSupportURL={#MyAppURL}
|
||||||
AppUpdatesURL={#MyAppURL}
|
AppUpdatesURL={#MyAppURL}
|
||||||
|
@ -55,8 +55,8 @@ Name: "{commonappdata}\{#MyAppName}\credentials"; Permissions: everyone-full
|
||||||
|
|
||||||
[Icons]
|
[Icons]
|
||||||
Name: "{group}\Web Admin"; Filename: "http://127.0.0.1:8080/web";
|
Name: "{group}\Web Admin"; Filename: "http://127.0.0.1:8080/web";
|
||||||
Name: "{group}\Service Control"; WorkingDir: "{app}"; Filename: "powershell.exe"; Parameters: "-Command ""Start-Process cmd \""/k cd {app} & {#MyAppName} service --help\"" -Verb RunAs"; Comment: "Install, start, stop, uninstall SFTPGo Service"
|
Name: "{group}\Service Control"; WorkingDir: "{app}"; Filename: "powershell.exe"; Parameters: "-Command ""Start-Process cmd \""/k cd {app} & {#MyAppExeName} service --help\"" -Verb RunAs"; Comment: "Manage SFTPGo Service"
|
||||||
Name: "{group}\REST API CLI"; WorkingDir: "{app}\examples\rest-api-cli"; Filename: "{cmd}"; Parameters: "/k sftpgo_api_cli.exe --help"; Comment: "Manage users and connections"
|
Name: "{group}\REST API CLI"; WorkingDir: "{app}\examples\rest-api-cli"; Filename: "{cmd}"; Parameters: "/k sftpgo_api_cli.exe --help"; Comment: "Manage users, folders and connections"
|
||||||
Name: "{group}\Documentation"; Filename: "{#DocURL}";
|
Name: "{group}\Documentation"; Filename: "{#DocURL}";
|
||||||
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
|
Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue