📄 phunter.dpr
字号:
program phunter;
uses
windows, Unit1, Forms;
{$R *.res}
var
hWindow: dword;
begin
hWindow := FindWindow('TForm1', 'Process Hunter (Hidden processes detector) by Ms-Rem');
if hWindow > 0 then
begin
SetForegroundWindow(hWindow);
ExitProcess(0);
end;
Application.Initialize;
Application.Title := 'Process Hunter';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -