<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Xcopy</id>
		<title>Xcopy - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.wiki.mohid.com/index.php?action=history&amp;feed=atom&amp;title=Xcopy"/>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Xcopy&amp;action=history"/>
		<updated>2026-04-04T21:12:52Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.28.0</generator>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Xcopy&amp;diff=964&amp;oldid=prev</id>
		<title>Guillaume: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Xcopy&amp;diff=964&amp;oldid=prev"/>
				<updated>2008-12-03T10:39:09Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style='vertical-align: top;' lang='en'&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan='1' style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Revision as of 10:39, 3 December 2008&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan='2' style='text-align: center;' lang='en'&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Guillaume</name></author>	</entry>

	<entry>
		<id>http://www.wiki.mohid.com/index.php?title=Xcopy&amp;diff=963&amp;oldid=prev</id>
		<title>192.168.20.111 at 10:59, 22 November 2006</title>
		<link rel="alternate" type="text/html" href="http://www.wiki.mohid.com/index.php?title=Xcopy&amp;diff=963&amp;oldid=prev"/>
				<updated>2006-11-22T10:59:13Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Copies files and directory trees for windows.&lt;br /&gt;
&lt;br /&gt;
 XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]&lt;br /&gt;
                            [/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]&lt;br /&gt;
                            [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z]&lt;br /&gt;
                            [/EXCLUDE:file1[+file2][+file3]...]&lt;br /&gt;
 &lt;br /&gt;
  source       Specifies the file(s) to copy.&lt;br /&gt;
  destination  Specifies the location and/or name of new files.&lt;br /&gt;
  /A           Copies only files with the archive attribute set,&lt;br /&gt;
               doesn't change the attribute.&lt;br /&gt;
  /M           Copies only files with the archive attribute set,&lt;br /&gt;
               turns off the archive attribute.&lt;br /&gt;
  /D:m-d-y     Copies files changed on or after the specified date.&lt;br /&gt;
               If no date is given, copies only those files whose&lt;br /&gt;
               source time is newer than the destination time.&lt;br /&gt;
  /EXCLUDE:file1[+file2][+file3]...&lt;br /&gt;
               Specifies a list of files containing strings.  Each string&lt;br /&gt;
               should be in a separate line in the files.  When any of the&lt;br /&gt;
               strings match any part of the absolute path of the file to be&lt;br /&gt;
               copied, that file will be excluded from being copied.  For&lt;br /&gt;
               example, specifying a string like \obj\ or .obj will exclude&lt;br /&gt;
               all files underneath the directory obj or all files with the&lt;br /&gt;
               .obj extension respectively.&lt;br /&gt;
  /P           Prompts you before creating each destination file.&lt;br /&gt;
  /S           Copies directories and subdirectories except empty ones.&lt;br /&gt;
  /E           Copies directories and subdirectories, including empty ones.&lt;br /&gt;
               Same as /S /E. May be used to modify /T.&lt;br /&gt;
  /V           Verifies each new file.&lt;br /&gt;
  /W           Prompts you to press a key before copying.&lt;br /&gt;
  /C           Continues copying even if errors occur.&lt;br /&gt;
  /I           If destination does not exist and copying more than one file,&lt;br /&gt;
               assumes that destination must be a directory.&lt;br /&gt;
  /Q           Does not display file names while copying.&lt;br /&gt;
  /F           Displays full source and destination file names while copying.&lt;br /&gt;
  /L           Displays files that would be copied.&lt;br /&gt;
  /G           Allows the copying of encrypted files to destination that does&lt;br /&gt;
               not support encryption.&lt;br /&gt;
  /H           Copies hidden and system files also.&lt;br /&gt;
  /R           Overwrites read-only files.&lt;br /&gt;
  /T           Creates directory structure, but does not copy files. Does not&lt;br /&gt;
               include empty directories or subdirectories. /T /E includes&lt;br /&gt;
               empty directories and subdirectories.&lt;br /&gt;
  /U           Copies only files that already exist in destination.&lt;br /&gt;
  /K           Copies attributes. Normal Xcopy will reset read-only attributes.&lt;br /&gt;
  /N           Copies using the generated short names.&lt;br /&gt;
  /O           Copies file ownership and ACL information.&lt;br /&gt;
  /X           Copies file audit settings (implies /O).&lt;br /&gt;
  /Y           Suppresses prompting to confirm you want to overwrite an&lt;br /&gt;
               existing destination file.&lt;br /&gt;
  /-Y          Causes prompting to confirm you want to overwrite an&lt;br /&gt;
               existing destination file.&lt;br /&gt;
  /Z           Copies networked files in restartable mode.&lt;br /&gt;
 &lt;br /&gt;
 The switch /Y may be preset in the COPYCMD environment variable.&lt;br /&gt;
 This may be overridden with /-Y on the command line.&lt;/div&gt;</summary>
		<author><name>192.168.20.111</name></author>	</entry>

	</feed>
<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
  ga('create', 'UA-56589921-5', 'auto');
  ga('send', 'pageview');
</script>