本文介绍了在C#中运行远程exe的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

i am french,我不会说英语。



i希望通过ac在我的电脑上运行.exe应用程序#program。可执行文件位于同一域中的远程服务器上。

i在服务器上有管理员权限。



我正在尝试WMI但它不起作用



你能帮助我吗?

hello,
i am french, i dont speak english very well.

i want run an .exe application on my pc via a c# program .the executable is on a remote server in the same domain.
i have admin access on the server.

i' m trying WMI but it doesn't working

Can you help me ?

推荐答案

ProcessStartInfo startInfo = new ProcessStartInfo();
            startInfo.FileName = "WINWORD.EXE";
            startInfo.Arguments ="";
            startInfo.WorkingDirectory = "";
            startInfo.Domain = "";
            startInfo.Password = new System.Security.SecureString();
            startInfo.UserName = "";
            Process.Start(startInfo);





谢谢

Dinesh Sharma



Thanks
Dinesh Sharma


这篇关于在C#中运行远程exe的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 15:40