كود:
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Start()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
For Each selProcess As <strong class="highlight">Process</strong> <strong class="highlight">In</strong> <strong class="highlight">Process</strong>.GetProcesses
If selProcess.ProcessName = "taskmgr" Then
selProcess.Kill()
Exit For
End If
Next
End Sub
End Class
يجب أن تضيف timer للفورم
لو أغلقت الفورم و التايمر في الفورم
يتم إبطال عمل إيقاف إخفاء الـ process من ال taskmgr
و عند الإستعمال الصحيح فإنه تتواصل عملية إخفاء ال process من ال taskmgr
طوال فترة تشغيل تطبيقك
و هذا الكود يخفي الـ process ليس من taskmgr فقط بل من الأدوات المتشابهة أيضا
كالـــ
SysInternals Process Monitor كود:
sub command1_click()
x.hideMyProcess
end sub