RE: ISA Services and Their Processes

  • From: "Jim Harrison" <Jim@xxxxxxxxxxxx>
  • To: "[ISAserver.org Discussion List]" <isalist@xxxxxxxxxxxxx>
  • Date: Fri, 18 Feb 2005 23:53:11 -0800

Is this the equivalent of an email stutter?

-----Original Message-----
From: josephk [mailto:josephk@xxxxxxxxx] 
Sent: Friday, February 18, 2005 4:13 PM
To: [ISAserver.org Discussion List]
Subject: [isalist] RE: ISA Services and Their Processes

http://www.ISAserver.org


Hi Wayne,

Well a simple command is netstat -o Not sure if  your looking for the
pids or not.

And if your looking for the running processes in C# you can use
something like this

using System.Diagnostics;

using System.IO;

using System.Data.SqlClient;

using System;

using System.Data;

using System.Collections;

 

            private void AddItems()

            {

                  try 

                  {

                        // Remove existing items from the control.

                        listView1.Items.Clear();

 

                        //Set the initial view to show details

                        this.listView1.View = View.Details;

                        

                        foreach(Process prc in Process.GetProcesses() )

                        {

 

                              // Define the list items

                              ListViewItem lvi = new
ListViewItem(prc.ProcessName);

                              lvi.SubItems.Add (prc.Id.ToString());

                              lvi.SubItems.Add
(prc.UserProcessorTime.ToString());

                              lvi.SubItems.Add
(prc.NonpagedSystemMemorySize.ToString());

                              lvi.SubItems.Add
(prc.StartTime.ToString());

 

                              // Add the list items to the ListView

                              listView1.Items.Add(lvi);

                        }

 

                  //    listView1.Sorted = true;

                  

                  } 

                  catch(Exception exp)

                  {

 

                        MessageBox.Show(exp.Message, this.Text);

 

                  }

            }

With this type of simple function I can add the next step that will tell
me what threads each process has actually running.

As folks will tell you not to play with the services and such for ISA.

 

Joseph

 

________________________________

From: Wayne Berry [mailto:wayne@xxxxxxxxxx] 
Sent: Thursday, February 17, 2005 11:56 AM
To: [ISAserver.org Discussion List]
Subject: [isalist] ISA Services and Their Processes

 

http://www.ISAserver.org

ISAList:

 

When I do a "net start" for the command line I see:

 

   Microsoft Firewall

   Microsoft ISA Server Control

   Microsoft ISA Server Job Scheduler

   Microsoft ISA Server Storage

 

In the running service list.  I know that "Microsoft Firewall" Service
is tied to wspsrv.exe.

 

1)       I am wondering if anyone know what the other services are using
for a process space?  

2)       "Microsoft Firewall" doesn't have any dependencies, so the
other services don't have to start first.  Anyone know if they are
dependent on "Microsoft Firewall"?

3)       Anyone know the short name for the other services?, "Microsoft
Firewall" short name is "fwsrv"?

4)       Anyone know what the other services do?  "Microsoft Firewall"
is the proxy/firewall, however I am pretty sure it doesn't handle the
ADs structure for ISA.

 

Thanks,

Wayne Berry

The ISAPI Dev Lurking In the ISA List

 

 

------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
World of Windows Networking: http://www.windowsnetworking.com
Leading Network Software Directory: http://www.serverfiles.com
No.1 Exchange Server Resource Site: http://www.msexchange.org
Windows Security Resource Site: http://www.windowsecurity.com/
Network Security Library: http://www.secinf.net/
Windows 2000/NT Fax Solutions: http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as:
josephk@xxxxxxxxxxxxxxxxx
To unsubscribe visit http://www.webelists.com/cgi/lyris.pl?enter=isalist
Report abuse to listadmin@xxxxxxxxxxxxx 

------------------------------------------------------
List Archives: http://www.webelists.com/cgi/lyris.pl?enter=isalist
ISA Server Newsletter: http://www.isaserver.org/pages/newsletter.asp
ISA Server FAQ: http://www.isaserver.org/pages/larticle.asp?type=FAQ
------------------------------------------------------
Other Internet Software Marketing Sites:
World of Windows Networking: http://www.windowsnetworking.com
Leading Network Software Directory: http://www.serverfiles.com
No.1 Exchange Server Resource Site: http://www.msexchange.org
Windows Security Resource Site: http://www.windowsecurity.com/
Network Security Library: http://www.secinf.net/
Windows 2000/NT Fax Solutions: http://www.ntfaxfaq.com
------------------------------------------------------
You are currently subscribed to this ISAserver.org Discussion List as:
jim@xxxxxxxxxxxx
To unsubscribe visit http://www.webelists.com/cgi/lyris.pl?enter=isalist
Report abuse to listadmin@xxxxxxxxxxxxx 


Other related posts: