CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Threaded View

  1. #1
    Join Date
    May 2009
    Posts
    1

    System.Diagnostics.Process (MainModule throws Wind32 "Access Denied" exception)

    Hi,

    I'm trying to thumb through the list of currently running processes and search their descriptions

    Here is how I get the list of processes:

    ///////
    Process[] pList = System.Diagnostics.Process.GetProcesses();
    //////

    Here is where the description is located:

    /////////
    System.Diagnostics.Process foobarProcess;
    foobarProcess.MainModule.FileVersionInfo.FileDescription; //String value
    /////////

    However, when I try to access anything under the MainModule property, i get a Win32 exception saying "Access Denied".

    textBlock.Text = foobarProcess.MainModule.FileVersionInfo.FileDescription.ToLower();

    I'm a noob, any help?

    Thanks,
    Kipp
    Last edited by Kipp27; May 20th, 2009 at 12:10 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured