<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://htyp.org/mw/index.php?action=history&amp;feed=atom&amp;title=Microsoft%2FWindows%2Fbackups</id>
	<title>Microsoft/Windows/backups - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://htyp.org/mw/index.php?action=history&amp;feed=atom&amp;title=Microsoft%2FWindows%2Fbackups"/>
	<link rel="alternate" type="text/html" href="https://htyp.org/mw/index.php?title=Microsoft/Windows/backups&amp;action=history"/>
	<updated>2026-06-25T11:08:08Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://htyp.org/mw/index.php?title=Microsoft/Windows/backups&amp;diff=27310&amp;oldid=prev</id>
		<title>Woozle: Woozle moved page Microsoft Windows/backups to Microsoft/Windows/backups</title>
		<link rel="alternate" type="text/html" href="https://htyp.org/mw/index.php?title=Microsoft/Windows/backups&amp;diff=27310&amp;oldid=prev"/>
		<updated>2021-08-14T21:20:23Z</updated>

		<summary type="html">&lt;p&gt;Woozle moved page &lt;a href=&quot;/Microsoft_Windows/backups&quot; class=&quot;mw-redirect&quot; title=&quot;Microsoft Windows/backups&quot;&gt;Microsoft Windows/backups&lt;/a&gt; to &lt;a href=&quot;/Microsoft/Windows/backups&quot; title=&quot;Microsoft/Windows/backups&quot;&gt;Microsoft/Windows/backups&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 21:20, 14 August 2021&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&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>Woozle</name></author>
	</entry>
	<entry>
		<id>https://htyp.org/mw/index.php?title=Microsoft/Windows/backups&amp;diff=11019&amp;oldid=prev</id>
		<title>Woozle: New page: ==batch scripts with journaling== One dead simple, non-proprietary way of making backups from a Windows system to a network share (or secondary storage) is using batch files. This should w...</title>
		<link rel="alternate" type="text/html" href="https://htyp.org/mw/index.php?title=Microsoft/Windows/backups&amp;diff=11019&amp;oldid=prev"/>
		<updated>2008-12-13T16:15:46Z</updated>

		<summary type="html">&lt;p&gt;New page: ==batch scripts with journaling== One dead simple, non-proprietary way of making backups from a Windows system to a network share (or secondary storage) is using batch files. This should w...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==batch scripts with journaling==&lt;br /&gt;
One dead simple, non-proprietary way of making backups from a Windows system to a network share (or secondary storage) is using batch files. This should work with anything from Win98 (when the Task Scheduler first appeared, iirc) through Vista, though I have only tested it with Win98.&lt;br /&gt;
&lt;br /&gt;
This sets up a set of journals by day and by month, so that you can recover old versions of files. (This is useful in case a file gets clobbered somehow but you only notice the problem &amp;#039;&amp;#039;after&amp;#039;&amp;#039; it is backed up.)&lt;br /&gt;
&lt;br /&gt;
You simply create a batch file to do the backup, and then use the Task Scheduler to run each batch file at appropriate intervals (after midnight on a Saturday works well):&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;backup.bat&amp;#039;&amp;#039;&amp;#039; - generalized, with 5 journals labeled as &amp;quot;daily&amp;quot;:&lt;br /&gt;
&amp;lt;DOS&amp;gt;&lt;br /&gt;
REM Shift journals forward&lt;br /&gt;
xcopy /s/c/Y/d [target]\machines\[source_pc]\journal\5\*.* [target]\machines\[source_pc]\journal\6\&lt;br /&gt;
xcopy /s/c/Y/d [target]\machines\[source_pc]\journal\4\*.* [target]\machines\[source_pc]\journal\5\&lt;br /&gt;
xcopy /s/c/Y/d [target]\machines\[source_pc]\journal\3\*.* [target]\machines\[source_pc]\journal\4\&lt;br /&gt;
xcopy /s/c/Y/d [target]\machines\[source_pc]\journal\2\*.* [target]\machines\[source_pc]\journal\3\&lt;br /&gt;
xcopy /s/c/Y/d [target]\machines\[source_pc]\journal\1\*.* [target]\machines\[source_pc]\journal\2\&lt;br /&gt;
REM Backup from source&lt;br /&gt;
xcopy /s/c/y/d [source_dir_1]\*.* [target]\machines\[source_pc]\journal\1\[target 1]\&lt;br /&gt;
xcopy /s/c/y/d [source_dir_1]\*.* [target]\machines\[source_pc]\journal\1\[target 2]\&lt;br /&gt;
REM ...and so on.&lt;br /&gt;
&amp;lt;/DOS&amp;gt;&lt;br /&gt;
* [source_pc] is the name of the machine being backed up,&lt;br /&gt;
* [source_dir_n] refers to each of the folders you would like to back up&lt;br /&gt;
* [target] is the folder where you want to put all your backups&lt;br /&gt;
* [target_n] is whatever you&amp;#039;d like to name [source_dir_n] within the backup&lt;br /&gt;
&lt;br /&gt;
There&amp;#039;s probably a way to do this more elegantly using batch %VARIABLES%, but I haven&amp;#039;t had a chance to work out the details and test the results.&lt;br /&gt;
==Example==&lt;br /&gt;
from {{thehypertwins}}&amp;#039; network:&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;daily backup.bat&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;DOS&amp;gt;&lt;br /&gt;
REM Shift journals forward&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Daily\5\*.* \\rizzo\shared\backups\machines\vincent\Daily\6\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Daily\4\*.* \\rizzo\shared\backups\machines\vincent\Daily\5\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Daily\3\*.* \\rizzo\shared\backups\machines\vincent\Daily\4\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Daily\2\*.* \\rizzo\shared\backups\machines\vincent\Daily\3\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Daily\1\*.* \\rizzo\shared\backups\machines\vincent\Daily\2\&lt;br /&gt;
REM Backup from source&lt;br /&gt;
xcopy /s/c/y/d c:\etc\work\*.* \\rizzo\shared\backups\machines\vincent\Daily\1\Work\&lt;br /&gt;
xcopy /s/c/y/d &amp;quot;c:\my documents\Digital Wave Player\*.*&amp;quot; \\rizzo\shared\backups\machines\vincent\Daily\1\Dictaphone\&lt;br /&gt;
xcopy /s/c/y/d &amp;quot;C:\My Documents\My PSP8 Files\*.*&amp;quot; \\rizzo\shared\backups\machines\vincent\Daily\1\PaintShop\&lt;br /&gt;
&amp;lt;/DOS&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;monthly backup.bat&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;DOS&amp;gt;&lt;br /&gt;
REM Shift journals forward&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Monthly\5\*.* \\rizzo\shared\backups\machines\vincent\Monthly\6\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Monthly\4\*.* \\rizzo\shared\backups\machines\vincent\Monthly\5\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Monthly\3\*.* \\rizzo\shared\backups\machines\vincent\Monthly\4\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Monthly\2\*.* \\rizzo\shared\backups\machines\vincent\Monthly\3\&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Monthly\1\*.* \\rizzo\shared\backups\machines\vincent\Monthly\2\&lt;br /&gt;
REM Shift oldest daily to first monthly&lt;br /&gt;
xcopy /s/c/Y/d \\rizzo\shared\backups\machines\vincent\Daily\6\*.* \\rizzo\shared\backups\machines\vincent\Monthly\1\&lt;br /&gt;
&amp;lt;/DOS&amp;gt;&lt;/div&gt;</summary>
		<author><name>Woozle</name></author>
	</entry>
</feed>