Как я могу удаленно запустить интерактивный процесс
Я хочу начать notepad.exe на удаленной машине, которая является настольной интерактивной.
Что я уже пробовал:
Я пробовал win32.SheduleJob, но он показывает ошибку "недопустимый параметр".
bjectGetOptions objectGetOptions = new ObjectGetOptions(); ManagementPath managementPath = new ManagementPath("Win32_ScheduledJob"); ManagementClass classInstance = new ManagementClass(scope, managementPath, objectGetOptions); object[] theProcessToRun = { "notepad.exe" }; ManagementBaseObject inParams = classInstance.GetMethodParameters("Create");