私は次のコードを使用しています。
ServiceController MyController = new ServiceController();
MyController.MachineName = server_txt.Text.Trim();
MyController.ServiceName = "Service1";
string msg = MyController.Status.ToString();
Label1.Text = msg;
このコードは、私がアクセスできるネットワークコンピューターで正常に機能します。クレデンシャルを使用して異なるドメインのシステムで機能するようにこれを変更するにはどうすればよいですか?