view process ids without having to go into COM+ (Component Services)

Ask a Question related to ASP, Design and Development.

  1. #1

    Default view process ids without having to go into COM+ (Component Services)

    Anyone know how to display process id's (normally found by going to
    Component Services and switching to applications to 'Status View') in a web
    page?

    I'm trying to keep remote users from having to terminal server or use com+
    to view the process id's they need for asp debugging (via attaching to a
    process (remote debugging via dcom and machine debug manager))

    Thx in advance,

    TJ


    TJ Guest

  2. Similar Questions and Discussions

    1. Update component view
      Hello, I'm using a linkbutton (yahoo skin) on a gradient background. When i roll out (so no click) of the component there's a colored square...
    2. Web Services Component
      I am new to web services in flash. I am running Flash 8 and am attempting to use the Web Services component. I have defined my web service, bound...
    3. Automated process to set Fast Web View flag to Yes?
      We have an application that allows files to be submitted in PDF format and displayed on the server. Some files are coming in without the Fast Web...
    4. LAN & Generic Host Process for Win32 Services
      I have a peer-to-peer network configured which causes Generic Host Process for Win32 Services to keep connecting to the internet. I suppose that a...
    5. Generic Host Process for Win32 Services problem
      Every time I use AOL the following error message appears "Generic Host Process for Win32 Services has encontered a problem and needs to close". ...
  3. #2

    Default RE: view process ids without having to go into COM+ (Component Services)

    Hi TJ,

    EnumProcesses API will get you the list. You'll also want the names of the
    processes with GetModuleFileNameExA. These and related API's are
    demonstrated in this article.

    187913 HOWTO: List Running Processes
    [url]http://support.microsoft.com/?id=187913[/url]

    Thank you, Mike
    Microsoft, ASP.NET Support Professional

    Microsoft highly recommends to all of our customers that they visit the
    [url]http://www.microsoft.com/protect[/url] site and perform the three straightforward
    steps listed to improve your computer’s security.

    This posting is provided "AS IS", with no warranties, and confers no rights.


    --------------------
    > From: "TJ" <tonyj@nospam.org>
    > Subject: view process ids without having to go into COM+ (Component
    Services)
    > Date: Thu, 2 Oct 2003 09:05:24 -0500
    > Lines: 13
    > X-Priority: 3
    > X-MSMail-Priority: Normal
    > X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
    > X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
    > Message-ID: <ux3N#6OiDHA.1864@TK2MSFTNGP10.phx.gbl>
    > Newsgroups: microsoft.public.inetserver.asp.general
    > NNTP-Posting-Host: te-64-146-28-114.transedge.com 64.146.28.114
    > Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
    > Xref: cpmsftngxa06.phx.gbl microsoft.public.inetserver.asp.general:254294
    > X-Tomcat-NG: microsoft.public.inetserver.asp.general
    >
    > Anyone know how to display process id's (normally found by going to
    > Component Services and switching to applications to 'Status View') in a
    web
    > page?
    >
    > I'm trying to keep remote users from having to terminal server or use com+
    > to view the process id's they need for asp debugging (via attaching to a
    > process (remote debugging via dcom and machine debug manager))
    >
    > Thx in advance,
    >
    > TJ
    >
    >
    >
    Mike Moore [MSFT] Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139