What's needed:

To move several directories between two Windows 2008 servers on a regular basis.

Due to security requirements, neither server is supposed to have network shares set up or extraneous software installed.

What's available:

Administrator access to both machines (including remote desktop access if that helps).

A third machine with:

  • Visual Studio 2010
  • Cygwin

Bonus extras

The script that does the rest of the work (apart from moving the files) is currently written in F#, but any .net/command line based solution would be fine.

link|improve this question

4  
Have the servers had their hidden shares (C$, etc.) removed? – grenade Jan 14 '11 at 10:30
@grenade ...no. headslap – mavnn Jan 14 '11 at 10:43
What about default shares? e.g., \\server1\\D$ – Aamir Jan 14 '11 at 12:07
"Due to security requirements", you should create regular user accounts to move the files and use that instead of the administrator accounts and default/hidden shares... Of course this will require network shares to be set up, but that's the whole point of them. Network shares allow you to limit the directories the users have access to, etc. I didn't put this as an answer because I went against your security requirements, but really, this is the most secure. – Nelson Rothermel Jan 14 '11 at 15:36
Depending on your requirements, the other thing that could be done (but your administrators would have to be involved), is to set up replication/DFS. – Nelson Rothermel Jan 14 '11 at 15:39
show 5 more comments
feedback

5 Answers

up vote 1 down vote accepted

You may find PsExec to be a useful tool to achieve this.

link|improve this answer
Yes, that may help. It does install "extraneous software" (a PsExec service), but from what I understand is temporary and gets cleaned up. – Nelson Rothermel Jan 14 '11 at 15:40
PsExec works by copying itself onto one of the server's hidden shares. You might as well use the hidden C$ share directly. – Tim Robinson Jan 14 '11 at 15:48
feedback

Create a simple file-transfer program from the ground up with .NET Sockets? That's what I would do at least. Just byte-stream over the network with a few preset folders that can only be reached using this program (that both would need async IO).

Edit: Or maybe this counts as extraneous software, no matter how small?

link|improve this answer
feedback

You can zip your directories up and send them across via netcat

link|improve this answer
feedback

Your best bet is to LZMA/RAR/ZIP it up and use scp (ssh/ssl ftp) or mount and unmount ssh file systems (sshfs, should be possible with cygwin). However, if this is more secure than SMB shares is another question. The pro of mounting and unmounting sshfs file systems is, the share is only available until the data has been transmitted, and it's protected by a 4096 bit private-public RSA key, and not a lumpy password.

link|improve this answer
1  
The Windows 2008 servers don't have cygwin. He can't install any software on the servers. I really don't see how this (or almost anything, really), can be done. – Nelson Rothermel Jan 14 '11 at 15:45
feedback
  • I think i will create FTP site at both windows 2008 server.
  • Than using FTP tool to upload or download file between server.
  • Might be good using with Schedule tool inside windows 2008 server than you can upload/download file via FTP when the time you want.
  • or, i might using .NET's FtpWebRequest/FtpWebResponse which are function for FTP to build FTP functions.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.