Windows: How to start a file copy job on a remote server without passing through the network?

I'd like to copy a large file on a remote computer, to the same remote computer, without going through the network.

The computer on which the files to be copied are is running Windows Server 2003.

Anyone knows how to do that?


Solution 1:

Look at PowerShell 2's remotin capabilities. It will run a complete script on a remote system (or the same script on many remote systems concurrently).

http://blogs.msdn.com/wmi/archive/2009/07/24/powershell-remoting-between-two-workgroup-machines.aspx

Solution 2:

Use psexec to run the copy command on the remote machine.

Solution 3:

Use a Remote Desktop Connection.

Solution 4:

Powershell remoting is your best option. While PSexec and running a copy command remotely will work PSexec is often flagged by antivirus software as a virus. See PowerShell 2.0 remoting guide: Part 1 – The basics