I have been building services for various reasons lately, and also a tool to manage such services. I just need a single function to identify if a specified EXE file is a windows service or not.
function FileIsService(Filename: String): Bool;
begin
//Must be a way to check an EXE for certain parameters
//to see if it is an installable windows service
end;
JD Solutions
function FileIsService(Filename: String): Bool;
begin
//Must be a way to check an EXE for certain parameters
//to see if it is an installable windows service
end;
JD Solutions