w2lame
w2lame

Reputation: 2813

SSH Equivalent on Windows

I am making an Asp.Net application which does the following on the client computer:

If the client is Ubuntu, I use ssh and execute what I want to. What is the way of doing this in Windows without the root access.

thanks in advance for replying.

Upvotes: 0

Views: 1260

Answers (2)

XtremeBytes
XtremeBytes

Reputation: 1497

try SSH FTP or SFTP is analogous to SSH in windows

Upvotes: 0

ChrisLively
ChrisLively

Reputation: 88072

This sounds a bit dodgy to me. However, what you are looking for is called PsExec (http://technet.microsoft.com/en-us/sysinternals/bb897553)

UPDATE

The only other way I can think of doing this is to use the built in task scheduler for windows.

With the task scheduler you can set a task to start when a computer has been idle for a particular amount of time and pause or stop it when it ceases to be idle.

Once the task is installed, just forget about it.

Upvotes: 1

Related Questions