7

リモート接続するリモート PC が 3 台あります。特定のプロセスがいずれかのマシンで実行されているかどうかを単一のウィンドウに表示する単純な Windows アプリケーションを作成しようとしています。

Server1: Chrome が実行されていません

Server2: Chrome が実行中です

Server3: Chrome が実行中です

WMI と C# を使用しました。これまでのところ、私はこれだけ持っています:

            ConnectionOptions connectoptions = new ConnectionOptions();

            connectoptions.Username = @"domain\username";
            connectoptions.Password = "password";

            //IP Address of the remote machine
            string ipAddress = "192.168.0.217";
            ManagementScope scope = new ManagementScope(@"\\" + ipAddress + @"\root\cimv2");
            scope.Options = connectoptions;
            //Define the WMI query to be executed on the remote machine
            SelectQuery query = new SelectQuery("select * from Win32_Process");

            using (ManagementObjectSearcher searcher = new
                        ManagementObjectSearcher(scope, query))
            {

                ManagementObjectCollection collection = searcher.Get();
                foreach (ManagementObject process in collection)
                {
                    // dwarfs stole the code!! :'(                        
                }
            }

すべて正しく設定されていると思いますが、 foreach ループ内で MessageBox.Show(process.ToString()) を実行すると、次のテキストを含むメッセージ ボックスが大量に表示されます。

\\username\root\cimv2:W32_Process.Handle="XXX"

私はちょっと立ち往生しています。その XXX をプロセス名に「変換」する方法はありますか? または、実際にプロセスの名前を取得して、if ステートメントを使用して「クロム」プロセスであるかどうかを確認するにはどうすればよいですか?

または...私の実装はやり過ぎですか?これを達成する簡単な方法はありますか?

どうもありがとう!

4

3 に答える 3

7

あなたのforeachで、これを試してください:

Console.WriteLine(process["Name"]);
于 2012-06-01T16:55:58.530 に答える
3

WQL文で監視するプロセスの名前をフィルタリングできるので、こんな風に書ける

 SelectQuery query = new SelectQuery("select * from Win32_Process Where Name='Chrome.exe'");

このサンプルアプリを試す

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_Process Where Name='Chrome.exe'");
                ManagementObjectSearcher Searcher = new ManagementObjectSearcher(Scope, Query);


                foreach (ManagementObject WmiObject in Searcher.Get())
                {
                  //for each instance found, do something  
                  Console.WriteLine("{0,-35} {1,-40}","Name",WmiObject["Name"]);

                }
            }
            catch (Exception e)
            {
                Console.WriteLine(String.Format("Exception {0} Trace {1}",e.Message,e.StackTrace));
            }
            Console.WriteLine("Press Enter to exit");
            Console.Read();
        }
    }
}
于 2012-06-01T16:54:14.300 に答える
2

試してみてくださいProcess.GetProcesses("chrome", "computerName")

System.Diagnostics.Process で次のように定義されています。

public static Process[] GetProcessesByName(
   string processName,
   string machineName)
于 2012-06-01T16:43:39.223 に答える