Go Back   TechArena Community > Software > Operating Systems
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , ,

Sponsored Links



Which Windows panel describes currently running processes on Windows XP Professional

Operating Systems


Reply
 
Thread Tools Search this Thread
  #1  
Old 04-08-2009
Member
 
Join Date: Aug 2009
Posts: 98
Which Windows panel describes currently running processes on Windows XP Professional

I am new to Windows Operating System. I have been using Linux distribution from many years. So being noob I would like to know which panel under Windows provides a list of all the processes that running on my Windows OS? Can you help me out how to find which panel provides the processes list running on my Windows XP Professional?
Reply With Quote
  #2  
Old 04-08-2009
Devasis's Avatar
Member
 
Join Date: Jan 2008
Posts: 3,367
Re: Which Windows panel describes currently running processes on Windows XP Professional

Windows Task Manager is an application included with Microsoft Windows NT family of operating systems that provides detailed information about computer performance and running applications, processes and CPU usage, commit charge and memory information, network activity and statistics, logged-in users, and system services. You can use Task Manager to start programs, to start or to end processes, and to view a dynamic display of your computer's performance. To start Task Manager, take any of the following actions:

- Press CTRL+ALT+DELETE, and then click Task Manager.
- Press CTRL+SHIFT+ESC.
- Right-click an empty area of the taskbar, and then click Task Manager.
Reply With Quote
  #3  
Old 04-08-2009
Member
 
Join Date: Aug 2008
Posts: 515
Re: Which Windows panel describes currently running processes on Windows XP Professional

If you want to start/stop certain services than msconfig utility is very essential for you. MSConfig is a utility to troubleshoot the Windows startup process. MSConfig modifies which programs run at startup, edits certain configuration files, and simplifies controls over Windows services. You can run msconfig command from the Run dialog box to get into it.
Reply With Quote
  #4  
Old 04-08-2009
XSI's Avatar
XSI XSI is offline
Member
 
Join Date: May 2008
Posts: 248
Re: Which Windows panel describes currently running processes on Windows XP Professional

You can even use the below command to know all the processes that are running on your Windows operating system:

Code:
Option Explicit
      Private Sub Command1_Click()
      List1.Clear
         Dim cb As Long
         Dim cbNeeded As Long
         Dim NumElements As Long
         Dim ProcessIDs() As Long
         Dim cbNeeded2 As Long
         Dim NumElements2 As Long
         Dim Modules(1 To 200) As Long
         Dim lRet As Long
         Dim ModuleName As String
         Dim nSize As Long
         Dim hProcess As Long
         Dim i As Long
         'Get the array containing the process id's for each process object
         cb = 8
         cbNeeded = 96
         Do While cb <= cbNeeded
            cb = cb * 2
            ReDim ProcessIDs(cb / 4) As Long
            lRet = EnumProcesses(ProcessIDs(1), cb, cbNeeded)
         Loop
         NumElements = cbNeeded / 4

         For i = 1 To NumElements
            'Get a handle to the Process
            hProcess = OpenProcess(PROCESS_QUERY_INFORMATION _
               Or PROCESS_VM_READ, 0, ProcessIDs(i))
            'Got a Process handle
            If hProcess <> 0 Then
                'Get an array of the module handles for the specified
                'process
                lRet = EnumProcessModules(hProcess, Modules(1), 200, _
                                             cbNeeded2)
                'If the Module Array is retrieved, Get the ModuleFileName
                If lRet <> 0 Then
                   ModuleName = Space(MAX_PATH)
                   nSize = 500
                   lRet = GetModuleFileNameExA(hProcess, Modules(1), _
                                   ModuleName, nSize)
                   List1.AddItem Left(ModuleName, lRet)
                End If
            End If
          'Close the handle to the process
         lRet = CloseHandle(hProcess)
         Next
      End Sub
For more information: see here
Reply With Quote
Reply

  TechArena Community > Software > Operating Systems


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Which Windows panel describes currently running processes on Windows XP Professional"
Thread Thread Starter Forum Replies Last Post
How to decrease number of processes running in windows 7 Sheridan^OS Networking & Security 4 13-12-2010 03:42 PM
How many processes do you have running Langward Overclocking & Computer Modification 4 21-03-2010 02:38 AM
Show All Running Processes in mac os x chaosblade Operating Systems 3 26-08-2009 09:49 AM
how to Log Running processes to a Text File? Glenny Windows Software 2 28-01-2009 04:54 PM
how to reduce the running processes Jagjeet Windows XP Support 3 31-08-2005 09:25 PM


All times are GMT +5.5. The time now is 08:24 PM.