Как сбросить пароль пользователя с помощью WordPress Rest API

Класс System.Diagnostics.Process не может убить удаленный процесс. Вы можете использовать пространство имен System.Management (обязательно установите ссылку), чтобы использовать WMI.

Ниже приведен простой пример.

var processName = "iexplore.exe";

var connectoptions = new ConnectionOptions();
connectoptions.Username = @"YourDomainName\UserName";
connectoptions.Password = "User Password";

string ipAddress = "192.168.206.53";
ManagementScope scope = new ManagementScope(@"\\" + ipAddress + @"\root\cimv2", connectoptions);

// WMI query
var query = new SelectQuery("select * from Win32_process where name = '" + processName + "'");

using (var searcher = new ManagementObjectSearcher(scope, query))
{
    foreach (ManagementObject process in searcher.Get()) // this is the fixed line
    {
        process.InvokeMethod("Terminate", null);
    }
}
Console.ReadLine();
0
задан Clever Almeida 30 December 2018 в 20:23
поделиться