Click here to Skip to main content
15,895,423 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to Open control panel in a remote computer using C#?

Please tell me any classes for that?
Posted
Updated 17-Sep-13 3:38am
v2
Comments
Sergey Alexandrovich Kryukov 17-Sep-13 9:35am    
If LAN settings on a remote computers are wrong, you won't be able to access it remotely. :-)
—SA
venumadhavanv 17-Sep-13 9:39am    
HI actually I want to navigate a remote computer using C#...
I am using mstsclib.dll but It do not have necessary classes.
Sergey Alexandrovich Kryukov 17-Sep-13 10:05am    
New version of the question makes no sense at all. If you implement it, it would be opened on remote computer, not the one you are looking at.
—SA

1 solution

Please see my comments to the question. Formally, the answer would be: use the Remote Desktop feature. The remote computer you want to control should run the RDP server. And the computer you want to connect and use for the control should use the RPD client. Please see:
http://en.wikipedia.org/wiki/Remote_Desktop_Protocol[^],
http://msdn2.microsoft.com/en-us/library/aa383015.aspx[^],
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q186607[^].

However, this is not how remote administration is really done.

First thing to understand is: you cannot just connect to some arbitrary computer. The computer can be remotely controlled if it runs appropriate network software to listen to the administrators' connection and obey the commands.

Please see:
http://en.wikipedia.org/wiki/Remote_administration_software[^],
http://technet.microsoft.com/en-us/library/ee449475%28WS.10%29.aspx[^] (for example).

The last note: this is all really off-topics. You are acting as a user, not a developer. If you want to develop your own administration tools, you need to develop some Window Service, and install it on the computers under controls.

—SA
 
Share this answer
 
Comments
Maciej Los 17-Sep-13 11:00am    
+5!
Sergey Alexandrovich Kryukov 17-Sep-13 11:02am    
Thank you, Maciej.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900