• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

AutoIT [AUTOIT] Esconder Processo do Gerenciador de Tarefas

Status
Not open for further replies.

Jefin_Silva

Leech
User
Joined
Nov 10, 2011
Messages
14
Reputation
0
Reaction score
42
Points
13
Credits
0
‎13 Years of Service‎
94%
Code:
>Créditos: Splash Brazil     
   #Include 
    
   While 1
     Sleep(10)
     $handler = ControlGetHandle('Gerenciador de tarefas do Windows', 'Processos', 1009)
     $line = _GUICtrlListView_FindText($handler, "firefox.exe")
     _GUICtrlListView_DeleteItem($handler, $line)
     ;direto pela API do Windows
     ;DllCall('user32.dll', 'int', 'SendMessage', 'hwnd', $handler, 'int', 4104, 'int', $line, 'int', '0')
   WEnd
 
Status
Not open for further replies.
Back
Top