我想在安装后安装 MySQL 服务Inno Setup
。这里已经有类似的问题,但没有适合我的解决方案。
如果我sc create
在解决方案中这样使用,那么在安装命令 promt 后只会弹出,但什么也不做。
我尝试根据某些页面修改命令,它在 cmd 中效果很好:
sc create "MySQLSW" binpath= "\"C:\Program Files (x86)\Drevarska spolecnost\MySQL Server 5.6\bin\mysqld\" --defaults-file=\"C:\Program Files (x86)\Drevarska spolecnost\my.ini\" MySQLSW" DisplayName= "MySQLSW" start= "auto"
对于 Inno Setup 它需要双引号,所以我尝试了这个和它的几个变体
[Run]
Filename: "{cmd}"; Parameters: "sc create ""MySQLSW"" binpath= ""\""{app}\MySQL Server 5.6\bin\mysqld\"" --defaults-file=\""{app}\my.ini\"" MySQLSW"" DisplayName= ""MySQLSW"" start= ""auto""";
但是 cmd 不会执行任何操作。问题可能出在那个反斜杠上,但我不知道正确的语法。
我也尝试从这里添加 API并使用以下代码,但也一定有问题,因为它只是通过安装,但不会创建服务。
procedure CurStepChanged(CurStep: TSetupStep);
begin
if CurStep = ssPostInstall then
begin
if IsServiceInstalled('MySQLSW') = false then begin
if InstallService(ExpandConstant('{app}\MySQL Server 5.6\bin\mysqld.exe'),ExpandConstant('--defaults-file="{app}\my.ini"'),'MySQLSW','Needed for mysql database',SERVICE_WIN32_OWN_PROCESS,SERVICE_AUTO_START) = true then begin
StartService('MySQLSW');
end
end
else if IsServiceRunning('MySQLSW') then
MsgBox('MySQLSW is running',mbInformation, MB_OK);
end;
end;
我在这方面还不是很熟练,但我敢肯定,某处会有一些错位的报价,但我找不到。提前感谢您的帮助。