Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8048895
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T06:37:40+00:00 2026-06-05T06:37:40+00:00

I can use PowerShell to do this fairly easily, but I am looking for

  • 0

I can use PowerShell to do this fairly easily, but I am looking for a C# way to do this. With PS, I can use Get-Service to iterate over the collection and check collections in there called DependentServices and RequiredServices to get the list of the dependent and required services for a given service.

I’ve looked into the WMI model using the query “Select * from Win32_Service”, but this returns a collection of Win32_Service objects that does not seem to have the collections I am interested in. I feel like I am missing something here. I have looked around and tried various searches, but I’ve not turned up a C#-centric way of doing this.

I want to query a given service and get back the collections mentioned above (DependentServices and RequiredServices). Sorry if I missed the obvious, but I really have not been able to find relevant topics.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T06:37:41+00:00Added an answer on June 5, 2026 at 6:37 am

    You can use the ServiceController class:

    StringBuilder sb = new System.Text.StringBuilder();
    foreach (var svc in System.ServiceProcess.ServiceController.GetServices())
    {
        sb.AppendLine("============================");
        sb.AppendLine(svc.DisplayName);
        foreach (var dep in svc.DependentServices)
        {
            sb.AppendFormat("\t{0}", dep.DisplayName);
            sb.AppendLine();
        }
    }
    
    MessageBox.Show(sb.ToString());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In C# I can use the method Console.Error.WriteLine . This doesn't work in Powershell,
I know it is possible to use Powershell from within IronPython, but is this
I understand how to use PowerShell to install/uninstall locally, but how can I run
In PowerShell you can use pushd (an alias for Push-Location ) and popd (an
I can use: Mage::getModel('cms/page')->getCollection()->addStoreFilter($store_id); to retrieve a collection of CMS pages filtered by Store
I can use the below to get the query string. var query_string = request.query;
I have a powershell cmdlet, and I can't seem to get the parameter sets
How can I use powershell and 7zip ( 7za.exe ) to ZIP a folder
Typically, in PowerShell you would use env:VARIABLE = Some kind of value But my
Using powershell, you can use the '&' character to run another application and pass

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.