Results 1 to 4 of 4

Thread: get all the services

  1. #1

    Thread Starter
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985

    get all the services

    How can I get all of the services on someone's computer? I know they are listed in the registry, so how exactly could I get the name of all of them, not knowing what they may be, and put them into an array or list or anything else so I can display, sort and do other things?

  2. #2
    Frenzied Member
    Join Date
    Oct 2002
    Location
    Gammapolis
    Posts
    1,474
    Add the system.ServiceProcess.dll to the references, and use servicecontroller class to enumerate all the services on a machine.

    The code assumes that you have a listbox added to your form.
    VB Code:
    1. Imports System.SerivceProcess
    2. '
    3. '
    4. '
    5. Dim servctrl() As ServiceController
    6.  servctrl = System.ServiceProcess.ServiceController.GetServices(Machine_name_can_go_here)
    7.   For Each serv As ServiceController In servctrl
    8.   ListBox1.Items.Add(serv.ServiceName)
    9. Next
    Last edited by Lunatic3; Aug 24th, 2003 at 09:59 AM.
    'Heading for the automatic overload'
    Marillion, Brave, The Great Escape, 1994

    'How will WE stand the FIRE TOMORROW?'
    Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979

  3. #3

    Thread Starter
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    How do I get the machine name?

  4. #4
    Frenzied Member
    Join Date
    Oct 2002
    Location
    Gammapolis
    Posts
    1,474
    If it is a local computer then you may leave it blank, if it is in a domain then you may apply other methods to get the computer name. By the way this task needs adminsitrative privilege.
    'Heading for the automatic overload'
    Marillion, Brave, The Great Escape, 1994

    'How will WE stand the FIRE TOMORROW?'
    Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979

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