我正在寻找并尝试将我的控制台应用程序安装为服务,但没有想出如何做到这一点。
任何建议?
实际上我只想安装为服务,并在每次启动窗口或延迟启动时自动启动
program Project1;
Uses
Windows,
SysUtils,
Dialogs,
Messages,TlHelp32,Classes, Graphics, Controls, SvcMgr,ExtCtrls;
Const
SECURITY_NT_AUTHORITY: TSIDIdentifierAuthority = (Value: (0, 0, 0, 0, 0, 5));
SECURITY_BUILTIN_DOMAIN_RID = $00000020;
DOMAIN_ALIAS_RID_ADMINS = $00000220;
type
TService1 = class(TService)
private
public
function GetServiceController: TServiceController; override;
end;
var
Service1: TService1;
Msg: TMsg;
Procedure ServiceController(CtrlCode: DWord); stdcall;
begin
Service1.Controller(CtrlCode);
end;
Function TService1.GetServiceController: TServiceController;
begin
Result := ServiceController;
end;
Function IsAdmin: Boolean;
var
hAccessToken: THandle;
ptgGroups: PTokenGroups;
dwInfoBufferSize: DWORD;
psidAdministrators: PSID;
x: Integer;
bSuccess: BOOL;
begin
Result := False;
bSuccess := OpenThreadToken(GetCurrentThread, TOKEN_QUERY, True,
hAccessToken);
if not bSuccess then
begin
if GetLastError = ERROR_NO_TOKEN then
bSuccess := OpenProcessToken(GetCurrentProcess, TOKEN_QUERY,
hAccessToken);
end;
if bSuccess then
begin
GetMem(ptgGroups, 1024);
bSuccess := GetTokenInformation(hAccessToken, TokenGroups,
ptgGroups, 1024, dwInfoBufferSize);
CloseHandle(hAccessToken);
if bSuccess then
begin
AllocateAndInitializeSid(SECURITY_NT_AUTHORITY, 2,
SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS,
0, 0, 0, 0, 0, 0, psidAdministrators);
{$R-}
for x := 0 to ptgGroups.GroupCount - 1 do
if EqualSid(psidAdministrators, ptgGroups.Groups[x].Sid) then
begin
Result := True;
Break;
end;
{$R+}
FreeSid(psidAdministrators);
end;
FreeMem(ptgGroups);
end;
end;
begin
if IsAdmin then
begin
// Install me as service
end else
begin
ShowMessage('Not Running As Admin');
end;
while GetMessage(Msg, 0, 0, 0) do
begin
TranslateMessage(Msg);
DispatchMessage(Msg);
end;
end.
答案 0 :(得分:5)
至少有两种方式:其中一种是'正确'方式,一种是'错误'(但有效)。
您可以通过(主机)帮助程序实用程序将任何应用程序作为服务运行,例如:
为什么这是错误的方式?因为如果您希望应用程序作为服务运行,则应创建服务应用程序。事实上,使用Delphi非常容易。这是正确的方法:
This delphi.about.com article has a lot of information about service applications。但是,它非常简单:通过File>创建一个新的服务应用程序。新> [也许其他>]服务申请。设置显示名称等。要安装它,请使用命令行开关/install
运行;使用/uninstall
卸载运行。
如果您希望命令行应用程序作为服务运行的原因是您不想编写两个应用程序,那么设计良好可以最大限度地减少额外的工作。在您的项目组中有两个应用程序,即命令行应用程序和服务应用程序。然后在其他文件中共享代码 - 即编写代码以执行应用程序的工作一次,并从两个项目中包含/调用它。
答案 1 :(得分:3)
TService需要TServiceApplication来创建和运行它,就像TForm需要TApplication来创建和运行它一样。
Application.Initialize;
Application.CreateForm(TService1, TService1);
Application.Run;
对于TServiceApplication,它不再是控制台应用程序。
据我所知,如果你真的想编写控制台服务,你需要跳过TService并使用几乎纯粹的Window API来实现控制台服务。
网上有一个老例子说明: NT Service and Console Application
引用那篇文章:
Delphi编译器支持使用TServiceApplication和TService开发NT服务 类。但是Delphi方法不支持双接口并且带来了很多 高架。我将展示如何使用Windows API编写轻量级双接口服务应用程序 功能。即使示例应用程序是用Delphi编写的,也很容易移植到另一个编译器 因为只使用本机API函数。
我想说Delphi TServiceApplication更容易......