I need a VNC/SSH/something server that will let me access command line remotely from a limited account (meaning no services or any install). Just a simple exe that I can run and have it either connect to me or listen for a connection. Preferably it would ask for a user/pass and run the cmd as the user I specify. Is there any such program?
|
feedback
|
|
John mentions psexec as being able to run a single executable. What he doesn't mention is that that executable can be cmd.exe (or powershell or bash or whatever), which will give you a remote shell. | |||||||||||
feedback
|
|
Do-it yourself corner. There is an open-source on codeproject for two components, server & client. The server is written in java and the client in C++. The server only needs enough permissions to open a socket, as described:
The server part is here : Executing commands on a remote machine - Part 1
| |||||||||
feedback
|
|
Telnet?
For running a single command over telnet, there is psexec from Sysinternals, which is a single executable that doesn't require installation. If you'd like the extra security (recommended) there is OpenSSH for Windows, but that will require an install. | ||||
feedback
|


