<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Simple XCOPY Question - Backup Files in Operating System - Microsoft</title>
    <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998297#M10774</link>
    <description>Hi Jon,&lt;BR /&gt;&lt;BR /&gt;I think you are right about *.*. I believe I understand that syntax now.&lt;BR /&gt;&lt;BR /&gt;I think this will do what I need:&lt;BR /&gt;&lt;BR /&gt;XCOPY C:\data\*.* H:\data\*.* /M /E /K /Y /Q&lt;BR /&gt;&lt;BR /&gt;Perhaps the user was not pressing F5 to refresh the destination file list.&lt;BR /&gt;&lt;BR /&gt;- Jay&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 18 Aug 2006 22:31:46 GMT</pubDate>
    <dc:creator>Jay Bollyn</dc:creator>
    <dc:date>2006-08-18T22:31:46Z</dc:date>
    <item>
      <title>Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998293#M10770</link>
      <description>I would like to use XCOPY to backup a folder and all sub folders to another drive. C:\data is the source. H:\data is the destination, which already exists. Here are the requirements:&lt;BR /&gt;&lt;BR /&gt;1. I only want to copy files and folders which are either new since the last backup, or modified. So I use the /A switch;&lt;BR /&gt;&lt;BR /&gt;2. Overwrite existing files with a newer version without prompting, so I use /Y.&lt;BR /&gt;&lt;BR /&gt;The user claims some files which have changed or been created since the last backup do not appear on the destination.&lt;BR /&gt;&lt;BR /&gt;Is my syntax correct? &lt;BR /&gt;&lt;BR /&gt;XCOPY C:\data\*.* H:\data\*.* /A /E /K /Y /Q&lt;BR /&gt;&lt;BR /&gt;This user does not need a full backup program. I think XCOPY is perfect for what he needs. &lt;BR /&gt;&lt;BR /&gt;- Jay&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Aug 2006 10:09:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998293#M10770</guid>
      <dc:creator>Jay Bollyn</dc:creator>
      <dc:date>2006-08-18T10:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998294#M10771</link>
      <description>I think that instead of /A you have to use /M. The /M unmark the archive attribute, so next time won't be copied. If the file is changed, then the file will be copied.&lt;BR /&gt;&lt;BR /&gt;The syntax should be:&lt;BR /&gt;&lt;BR /&gt;xcopy /M /E /K /Y /Q c:\data\*.* h:\data\</description>
      <pubDate>Fri, 18 Aug 2006 11:20:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998294#M10771</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-08-18T11:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998295#M10772</link>
      <description>Thanks Ivan,&lt;BR /&gt;&lt;BR /&gt;I think what I need is:&lt;BR /&gt;&lt;BR /&gt;XCOPY C:\data\*.* H:\data /M /E /K /Y /Q&lt;BR /&gt;&lt;BR /&gt;According to 'XCOPY /?', it should be:&lt;BR /&gt;&lt;BR /&gt;XCOPY source destination switches&lt;BR /&gt;&lt;BR /&gt;...which is different from most other commands.&lt;BR /&gt;&lt;BR /&gt;You are right, I should be using /M, not /A.&lt;BR /&gt;&lt;BR /&gt;I'm not sure what the *.* in the destination was doing, but I don't think it should be there, based on the examples I have seen.&lt;BR /&gt;&lt;BR /&gt;I will give this a try next week.&lt;BR /&gt;&lt;BR /&gt;- Jay</description>
      <pubDate>Fri, 18 Aug 2006 12:28:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998295#M10772</guid>
      <dc:creator>Jay Bollyn</dc:creator>
      <dc:date>2006-08-18T12:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998296#M10773</link>
      <description>Jay,&lt;BR /&gt;&lt;BR /&gt;My understanding, is that either you specify *.* in both cases, or you add in the /I switch.&lt;BR /&gt;&lt;BR /&gt;Are you going to need to also copy the ACL and ownership info?  If so, everything looks good, but add in the /O switch.  &lt;BR /&gt;&lt;BR /&gt;XCOPY C:\data\*.* H:\data /M /E /I /K /Y /Q /O&lt;BR /&gt;&lt;BR /&gt;And, if these are critical files you might want to think about verifying the copy by using /V.&lt;BR /&gt;&lt;BR /&gt;XCOPY C:\data\*.* H:\data /M /E /I /K /Y /Q /O /V&lt;BR /&gt;&lt;BR /&gt;Jon</description>
      <pubDate>Fri, 18 Aug 2006 19:20:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998296#M10773</guid>
      <dc:creator>Jon Finley</dc:creator>
      <dc:date>2006-08-18T19:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998297#M10774</link>
      <description>Hi Jon,&lt;BR /&gt;&lt;BR /&gt;I think you are right about *.*. I believe I understand that syntax now.&lt;BR /&gt;&lt;BR /&gt;I think this will do what I need:&lt;BR /&gt;&lt;BR /&gt;XCOPY C:\data\*.* H:\data\*.* /M /E /K /Y /Q&lt;BR /&gt;&lt;BR /&gt;Perhaps the user was not pressing F5 to refresh the destination file list.&lt;BR /&gt;&lt;BR /&gt;- Jay&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Aug 2006 22:31:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998297#M10774</guid>
      <dc:creator>Jay Bollyn</dc:creator>
      <dc:date>2006-08-18T22:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998298#M10775</link>
      <description>I think this is probably resolved. If not, I will reopen.</description>
      <pubDate>Sun, 20 Aug 2006 13:33:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998298#M10775</guid>
      <dc:creator>Jay Bollyn</dc:creator>
      <dc:date>2006-08-20T13:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Simple XCOPY Question - Backup Files</title>
      <link>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998299#M10776</link>
      <description>.</description>
      <pubDate>Sun, 20 Aug 2006 13:33:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-microsoft/simple-xcopy-question-backup-files/m-p/4998299#M10776</guid>
      <dc:creator>Jay Bollyn</dc:creator>
      <dc:date>2006-08-20T13:33:41Z</dc:date>
    </item>
  </channel>
</rss>

