我认为可以将你的程序隐藏起来(就象木马一样),
第一,运行时不能显示窗口,这可以这样实现,并且不出现在任务栏中:
var
xwndlong:integer;
begin
xwndlong:=getwindowlong(application.handle,gwl_exstyle);
showwindow(application.handle,sw_hide);
setwindowlong(application.handle,gwl_exstyle,xwndlong or ws_ex_toolwindow and not ws_ex_appwindow or ws_ex_topmost);
showwindow(application.handle,sw_show);
form1.hide;
end;
第二,在ctrl+alt+del的关闭程序中隐藏掉!
function RegisterServiceProcess(dwProcessID,dwType:integer):integer;stdcall;external 'kernel32.dll';
registerserviceprocess(getcurrentprocessid,1);
行不?给分吧!