Process Suspender

07/27/2012 02:37 Naworia#1
[Only registered and activated users can see links. Click Here To Register...]

Features :
- Suspend Application.
- Resume Suspended Application.
- Kill Application.
- Earn Information about Application.
- See all applications that means you can't see in task manager.


Download : [Only registered and activated users can see links. Click Here To Register...]
07/27/2012 10:52 tnd0#2
Code:
public void yenile()
    {
      int num = 0;
      foreach (Process process in Process.GetProcesses())
      {
        this.listBox1.Items.Add((object) process.ProcessName);
        ++num;
      }
      this.listBox1.SelectedIndex = 0;
      this.label2.Text = num.ToString();
    }
Which in turn calls

Code:
                status = NativeMethods.NtQuerySystemInformation( 
                    NativeMethods.NtQuerySystemProcessInformation,
                        bufferHandle.AddrOfPinnedObject(), 
                    bufferSize,
                    out requiredSize);
'see applications that you can't see in taskmanager' - this is exactly what the Windows7 Taskmanager calls as well.