1

こんにちは、C# を使用して、リモート マシン (ネットワーク内、コンピューター名または IP を使用) 上のすべてのサービスとその 'ログオン AS' のリストを取得したいと考えています。

WMI を使用して実現できると思いますが、方法がわかりません (以前に wmi を使用したことがありません)。

助けてください。

4

2 に答える 2

1

Win32_ServiceStartNameクラスのプロパティを使用できます。

このサンプルを試す

using System;
using System.Collections.Generic;
using System.Management;
using System.Text;

namespace GetWMI_Info
{
    class Program
    {

        static void Main(string[] args)
        {
            try
            {
                string ComputerName = "localhost";
                ManagementScope Scope;                

                if (!ComputerName.Equals("localhost", StringComparison.OrdinalIgnoreCase)) 
                {
                    ConnectionOptions Conn = new ConnectionOptions();
                    Conn.Username  = "";
                    Conn.Password  = "";
                    Conn.Authority = "ntlmdomain:DOMAIN";
                    Scope = new ManagementScope(String.Format("\\\\{0}\\root\\CIMV2", ComputerName), Conn);
                }
                else
                    Scope = new ManagementScope(String.Format("\\\\{0}\\root\\CIMV2", ComputerName), null);

                Scope.Connect();
                ObjectQuery Query = new ObjectQuery("SELECT * FROM Win32_Service");
                ManagementObjectSearcher Searcher = new ManagementObjectSearcher(Scope, Query);

                foreach (ManagementObject WmiObject in Searcher.Get())
                {
                    Console.WriteLine("{0,-35} {1,-40}","Name",WmiObject["Name"]);// String
                    Console.WriteLine("{0,-35} {1,-40}","StartName",WmiObject["StartName"]);// String

                }
            }
            catch (Exception e)
            {
                Console.WriteLine(String.Format("Exception {0} Trace {1}",e.Message,e.StackTrace));
            }
            Console.WriteLine("Press Enter to exit");
            Console.Read();
        }
    }
}
于 2013-03-04T14:01:53.933 に答える
0

もっと簡単な方法があると思います。サービスの詳細 (SYSTEM\CurrentControlSet\services\service name) のレジストリで見つけることができます。そこにオブジェクト名があります。

于 2016-03-03T11:37:46.483 に答える