开发者

C# run program from server [closed]

开发者 https://www.devze.com 2023-03-03 07:03 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its curren开发者_如何学Pythont f
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its curren开发者_如何学Pythont form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

Hi Can i run a c# winform program from my internet server?For example i install the program my server.after that i want to run this program other computer unless install framework to client


You're looking for ClickOnce deployment. (I'm guessing you mean that you want to host the winforms application)


You'd probably need one application running on your server that uses Windows Socket communication or similar which you can then use to trigger starting the other application since you generally can't remotely start applications remotely without remote desktop or similar. You can use FTP protocol with extensions to do this too I think but either way you'd most likely need one application running to trigger the other or use remote desktop.


Yes, you can run it using Remote Desktop. You will not need .NET Framework on your client machine but the program will run on the server. So it will have access only to the server resources.

0

精彩评论

暂无评论...
验证码 换一张
取 消