Re: file copying

2011-06-17 Thread Ben Scott
On Fri, Jun 17, 2011 at 9:51 AM, Rubens Almeida  wrote:
> If you prefer something more GUI oriented rather than robocopy take a
> look at RichCopy.

  OP said RichCopy kept hanging.

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


Re: file copying

2011-06-17 Thread Rubens Almeida
If you prefer something more GUI oriented rather than robocopy take a
look at RichCopy.

On Fri, Jun 17, 2011 at 9:25 AM, Ziots, Edward  wrote:
> I usually use the Robocopy 2010 version via the command-line, I found
> the GUI to be a bit cludgy.
>
> Z
>
> Edward E. Ziots
> CISSP, Network +, Security +
> Security Engineer
> Lifespan Organization
> Email:ezi...@lifespan.org
> Cell:401-639-3505
>
>
> -Original Message-
> From: Ben Scott [mailto:mailvor...@gmail.com]
> Sent: Friday, June 17, 2011 8:14 AM
> To: NT System Admin Issues
> Subject: Re: file copying
>
> On Thu, Jun 16, 2011 at 9:31 PM, Level 5 Lists 
> wrote:
>> I have a client that we need to migrate about 2tb of data. I recently
> used
>> xcopy gui but it didn't seem to bring a lot of permissions over and I
> had to
>> go back through and redo it.
>
>  ROBOCOPY.
>
>  Use the /COPYALL switch to include DACLs (permissions), along with
> everything else file-related (SACLs (auditing) might be of interest).
>
>  My usual command line for something like this is:
>
>        ROBOCOPY /E /COPYALL /DCOPY:T /NFL /NDL /R:0 /B
>
>  /E = Copy subdirs, including empty ones.
>
>  /DCOPY:T = For directories, copy timestamps.  Otherwise all the
> directories end up showing a last modified of today.
>
>  /NFL /NDL = I suppress file and directory lists because I just want
> to know about problems.  I already know it's going to be copying
> files.  Silence is golden.  But if something goes *wrong*, I want that
> to stick out, and not immediately scroll off the screen.
>
>  /R:0 = In most cases, I don't find retries to be useful, so I
> disable them.  Usually if a file can't be copied trying again in 30
> seconds won't help, and the delay slows everything down considerably.
>
>  /B = Request "backup semantics".  That preserves the "last accessed"
> timestamps on the originals.
>
> -- Ben
>
> ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
> ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe ntsysadmin
>
>
> ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
> ~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~
>
> ---
> To manage subscriptions click here: 
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe ntsysadmin
>
>

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: file copying

2011-06-17 Thread Ziots, Edward
I usually use the Robocopy 2010 version via the command-line, I found
the GUI to be a bit cludgy. 

Z

Edward E. Ziots
CISSP, Network +, Security +
Security Engineer
Lifespan Organization
Email:ezi...@lifespan.org
Cell:401-639-3505


-Original Message-
From: Ben Scott [mailto:mailvor...@gmail.com] 
Sent: Friday, June 17, 2011 8:14 AM
To: NT System Admin Issues
Subject: Re: file copying

On Thu, Jun 16, 2011 at 9:31 PM, Level 5 Lists 
wrote:
> I have a client that we need to migrate about 2tb of data. I recently
used
> xcopy gui but it didn't seem to bring a lot of permissions over and I
had to
> go back through and redo it.

  ROBOCOPY.

  Use the /COPYALL switch to include DACLs (permissions), along with
everything else file-related (SACLs (auditing) might be of interest).

  My usual command line for something like this is:

ROBOCOPY /E /COPYALL /DCOPY:T /NFL /NDL /R:0 /B

  /E = Copy subdirs, including empty ones.

  /DCOPY:T = For directories, copy timestamps.  Otherwise all the
directories end up showing a last modified of today.

  /NFL /NDL = I suppress file and directory lists because I just want
to know about problems.  I already know it's going to be copying
files.  Silence is golden.  But if something goes *wrong*, I want that
to stick out, and not immediately scroll off the screen.

  /R:0 = In most cases, I don't find retries to be useful, so I
disable them.  Usually if a file can't be copied trying again in 30
seconds won't help, and the delay slows everything down considerably.

  /B = Request "backup semantics".  That preserves the "last accessed"
timestamps on the originals.

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here:
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



Re: file copying

2011-06-17 Thread Ben Scott
On Thu, Jun 16, 2011 at 9:31 PM, Level 5 Lists  wrote:
> I have a client that we need to migrate about 2tb of data. I recently used
> xcopy gui but it didn’t seem to bring a lot of permissions over and I had to
> go back through and redo it.

  ROBOCOPY.

  Use the /COPYALL switch to include DACLs (permissions), along with
everything else file-related (SACLs (auditing) might be of interest).

  My usual command line for something like this is:

ROBOCOPY /E /COPYALL /DCOPY:T /NFL /NDL /R:0 /B

  /E = Copy subdirs, including empty ones.

  /DCOPY:T = For directories, copy timestamps.  Otherwise all the
directories end up showing a last modified of today.

  /NFL /NDL = I suppress file and directory lists because I just want
to know about problems.  I already know it's going to be copying
files.  Silence is golden.  But if something goes *wrong*, I want that
to stick out, and not immediately scroll off the screen.

  /R:0 = In most cases, I don't find retries to be useful, so I
disable them.  Usually if a file can't be copied trying again in 30
seconds won't help, and the delay slows everything down considerably.

  /B = Request "backup semantics".  That preserves the "last accessed"
timestamps on the originals.

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin



RE: file copying

2011-06-16 Thread Level 5 Lists
Yah, maybe it was robocopy I ran through. It was odd, I did a whole shared 
folder that had dozens of sub folders with different ACLs. I watched it for a 
few minutes and then randomly spot checked a few files, it looked good. The 
next business day several people complained they couldn't get to files they 
needed and one of my techs had to go back and reset perms on a lot of them ..

From: Andrew S. Baker [mailto:asbz...@gmail.com]
Sent: Thursday, June 16, 2011 11:32 PM
To: NT System Admin Issues
Subject: Re: file copying

XCOPY /O

ROBOCOPY





ASB (Professional Bio<http://about.me/Andrew.S.Baker/bio>)
Harnessing the Advantages of Technology for the SMB market...


On Thu, Jun 16, 2011 at 9:31 PM, Level 5 Lists 
mailto:li...@levelfive.us>> wrote:
I have a client that we need to migrate about 2tb of data. I recently used 
xcopy gui but it didn't seem to bring a lot of permissions over and I had to go 
back through and redo it.

I also played with the Richcopy but it would always hang up, I couldn't just 
select the root folder and have it successfully copy that much data.

Im willing to purchase something if anyone has anything that just works. I need 
permissions mainly, not overly worried about timestamps, but ACL is required.

Thx




~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com<mailto:listmana...@lyris.sunbeltsoftware.com>
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: file copying

2011-06-16 Thread Andrew S. Baker
XCOPY /O

ROBOCOPY



*ASB *(Professional Bio )
Harnessing the Advantages of Technology for the SMB market...




On Thu, Jun 16, 2011 at 9:31 PM, Level 5 Lists  wrote:

> I have a client that we need to migrate about 2tb of data. I recently used
> xcopy gui but it didn’t seem to bring a lot of permissions over and I had to
> go back through and redo it.
>
> ** **
>
> I also played with the Richcopy but it would always hang up, I couldn’t
> just select the root folder and have it successfully copy that much data.
> 
>
> ** **
>
> Im willing to purchase something if anyone has anything that just works. I
> need permissions mainly, not overly worried about timestamps, but ACL is
> required.
>
> ** **
>
> Thx
>
> ** **
>
>
>

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

Re: file copying

2011-06-16 Thread Jonathan Link
robocopy   /mir /r:1 /w:10 /sec
As a scheduled task, too.
Repeat as necessary until you're ready to switch everyone over. Retries once
on a problem, and waits 10 seconds between retries.  I used it to stage data
that was being in use from direct storage to our SAN.  dat store is only
about 500 GB, though.  Final pass took about 5 minutes when I was able to
take everyone off line and minimize downtime.

On Thu, Jun 16, 2011 at 9:31 PM, Level 5 Lists  wrote:

>  I have a client that we need to migrate about 2tb of data. I recently
> used xcopy gui but it didn’t seem to bring a lot of permissions over and I
> had to go back through and redo it.
>
>
>
> I also played with the Richcopy but it would always hang up, I couldn’t
> just select the root folder and have it successfully copy that much data.
>
>
>
> Im willing to purchase something if anyone has anything that just works. I
> need permissions mainly, not overly worried about timestamps, but ACL is
> required.
>
>
>
> Thx
>
>
>
> ~ Finally, powerful endpoint security that ISN'T a resource hog! ~
> ~   ~
>
> ---
> To manage subscriptions click here:
> http://lyris.sunbelt-software.com/read/my_forums/
> or send an email to listmana...@lyris.sunbeltsoftware.com
> with the body: unsubscribe ntsysadmin
>

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

RE: file copying

2011-06-16 Thread Michael B. Smith
I moved over 6TB for a client earlier this year with robocopy. We moved it in 
stages, but if you have got gigE between the servers, you can run multiple 
robocopies at once, up to the limits of your I/O subsystems.

If you need file diffs, take a look at DeltaCopy and cwRsync.

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

From: Level 5 Lists [mailto:li...@levelfive.us]
Sent: Thursday, June 16, 2011 9:32 PM
To: NT System Admin Issues
Subject: file copying

I have a client that we need to migrate about 2tb of data. I recently used 
xcopy gui but it didn't seem to bring a lot of permissions over and I had to go 
back through and redo it.

I also played with the Richcopy but it would always hang up, I couldn't just 
select the root folder and have it successfully copy that much data.

Im willing to purchase something if anyone has anything that just works. I need 
permissions mainly, not overly worried about timestamps, but ACL is required.

Thx


~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to 
listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~   ~

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe ntsysadmin