<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-AU">
  <id>https://david.gardiner.net.au/tags/Windows%20Home%20Server.xml</id>
  <title type="html">David Gardiner - Windows Home Server</title>
  <updated>2026-04-15T00:26:29.322Z</updated>
  <subtitle>Blog posts tagged with &apos;Windows Home Server&apos; - A blog of software development, .NET and other interesting things</subtitle>
  <rights>Copyright 2026 David Gardiner</rights>
  <icon>https://www.gravatar.com/avatar/37edf2567185071646d62ba28b868fab?s=64</icon>
  <logo>https://www.gravatar.com/avatar/37edf2567185071646d62ba28b868fab?s=256</logo>
  <generator uri="https://github.com/flcdrg/astrojs-atom" version="3">astrojs-atom</generator>
  <author>
    <name>David Gardiner</name>
  </author>
  <link href="https://david.gardiner.net.au/tags/Windows%20Home%20Server.xml" rel="self" type="application/atom+xml"/>
  <link href="https://david.gardiner.net.au/tags/Windows%20Home%20Server" rel="alternate" type="text/html" hreflang="en-AU"/>
  <category term="Windows Home Server"/>
  <category term="Software Development"/>
  <entry>
    <id>https://david.gardiner.net.au/2011/04/renaming-date-named-folders-using</id>
    <updated>2011-04-09T16:53:00.001+09:30</updated>
    <title>Renaming date-named folders using PowerShell</title>
    <link href="https://david.gardiner.net.au/2011/04/renaming-date-named-folders-using" rel="alternate" type="text/html" title="Renaming date-named folders using PowerShell"/>
    <category term="Windows Home Server"/>
    <category term="Media Center"/>
    <category term="PowerShell"/>
    <published>2011-04-09T16:53:00.001+09:30</published>
    <summary type="html">Since I&apos;ve been using the Windows 7 Import Pictures and Videos wizard to upload photos from our digital camera, we&apos;ve used the directory naming scheme of YYYY-MM-DD. Prior to this, I&apos;d written my own custom photo importer in C++ as I didn&apos;t like the naming schemes that Windows XP offered. Unfortunately I&apos;d chosen YYYYMMDD instead.</summary>
    <content type="html">&lt;p&gt;Since I&apos;ve been using the Windows 7 &lt;a href=&quot;/2010/02/changing-location-of-pictures-and&quot;&gt;Import Pictures and Videos&lt;/a&gt; wizard to upload photos from our digital camera, we&apos;ve used the directory naming scheme of YYYY-MM-DD. Prior to this, I&apos;d written my own custom photo importer in C++ as I didn&apos;t like the naming schemes that Windows XP offered. Unfortunately I&apos;d chosen YYYYMMDD instead.&lt;/p&gt;
&lt;p&gt;I&apos;m now consolidating all our digital photos onto our Windows Home Server. This makes them easier to browse on the big screen using Windows Media Center, and has the added benefit that they also get backed up to the cloud via a subscription to &lt;a href=&quot;http://www.crashplan.com&quot;&gt;CrashPlan&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I discovered the downside to having the different naming schemes when you go to view the photos in Media Center – it displays the folders out of order because they don&apos;t all follow the same format.&lt;/p&gt;
&lt;p&gt;PowerShell to the rescue:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;cd \\\\homeserver\\photos
dir | Where-Object {$\_.Name -match &quot;^\\d{8}$&quot; } | Rename-Item -NewName { $\_.Name -replace &quot;^(\\d{4})(\\d{2})(\\d{2})(.\*)&quot;, &quot;\`$1-\`$2-\`$3\`$4&quot; }
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This finds directories matching the old naming scheme and renames them to conform to the new one.&lt;/p&gt;
&lt;p&gt;My C++ importer imported all photos into a single folder, so to avoid overwriting the same folder if you imported twice on the same day, I would add a .0 (or .1 etc) to the end of the folder to ensure it was unique. There weren&apos;t too many of these though, so I dealt with them manually.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>https://david.gardiner.net.au/2010/05/working-with-cloud</id>
    <updated>2010-05-21T18:08:00.001+09:30</updated>
    <title>Working with the cloud</title>
    <link href="https://david.gardiner.net.au/2010/05/working-with-cloud" rel="alternate" type="text/html" title="Working with the cloud"/>
    <category term="Windows Home Server"/>
    <category term="Hardware"/>
    <category term="Training and Certification"/>
    <category term="LobsterPot"/>
    <published>2010-05-21T18:08:00.001+09:30</published>
    <summary type="html">So as mentioned yesterday, my laptop is sitting next to me, looking very shiny and pretty, but completely silent. I spoke to Dell support this morning and after managing to exhaust the call centre guy&apos;s script of variations on &quot;Have you tried turning it off and on again?&quot;, he eventually logged a case for me, and I&apos;m now waiting for a phone call from (presumably the local) support engineer.</summary>
    <content type="html">&lt;p&gt;So &lt;a href=&quot;/2010/05/one-laptop&quot;&gt;as mentioned yesterday&lt;/a&gt;, my laptop is sitting next to me, looking very shiny and pretty, but completely silent. I spoke to Dell support this morning and after managing to exhaust the call centre guy&apos;s script of variations on &quot;&lt;a href=&quot;https://en.wikipedia.org/wiki/The_IT_Crowd&quot;&gt;Have you tried turning it off and on again&lt;/a&gt;?&quot;, he eventually logged a case for me, and I&apos;m now waiting for a phone call from (presumably the local) support engineer.&lt;/p&gt;
&lt;p&gt;One thing I&apos;m not too worried about is the data sitting on the laptop. I know it&apos;s there – just a matter of getting a new BIOS (and/or possibly motherboard) and it will be fine. I also know I have a full backup on my Windows Home Server, which is reassuring.&lt;/p&gt;
&lt;p&gt;One of the first things I did when I joined &lt;a href=&quot;http://www.lobsterpot.com.au&quot;&gt;LobsterPot&lt;/a&gt; was to create a &lt;a href=&quot;http://www.mesh.com&quot;&gt;Live Mesh&lt;/a&gt; folder to store business-related documents. So that means I&apos;ve still got access to those documents via the web or my other machine at home – handy as &lt;a href=&quot;/2010/03/time-tracking&quot;&gt;after experimenting with various online solutions&lt;/a&gt;, I ended up reverting to using an Excel spreadsheet to track my work hours too!&lt;/p&gt;
&lt;p&gt;I&apos;ve also recently been making use of some of the training content at &lt;a href=&quot;https://web.archive.org/web/20101104200145/http://www.microsoft.com:80/Learning/&quot;&gt;Microsoft Learning&lt;/a&gt;. I download the content to the laptop and have been working my way through it on the bus to and from work (must be riveting for the lucky people who get to sit next to me!). There is an offline reader just for this purpose, though it does have its annoyances (eg. no keyboard shortcuts, doesn&apos;t allow text to be enlarged) but one nice thing is that it synchronises your progress. So I can still log into the Microsoft E-Learning site and am able to pick up where I left off, using the &quot;online&quot; mode instead.&lt;/p&gt;
&lt;p&gt;Then there&apos;s email, IM etc, which all work fine from where ever you are. So, while having a dead laptop is a huge pain, it isn&apos;t the end of the world.&lt;/p&gt;
&lt;p&gt;Good news.. I just had a call from Dell and they&apos;re coming out on Monday. Hope they can fix it quickly.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <id>https://david.gardiner.net.au/2010/04/more-whs-backup-options</id>
    <updated>2010-04-01T15:44:00.002+10:30</updated>
    <title>More WHS Backup options</title>
    <link href="https://david.gardiner.net.au/2010/04/more-whs-backup-options" rel="alternate" type="text/html" title="More WHS Backup options"/>
    <category term="Windows Home Server"/>
    <published>2010-04-01T15:44:00.002+10:30</published>
    <summary type="html">Some updates on options for online backup of Windows Home Server:</summary>
    <content type="html">&lt;p&gt;Some updates on options for &lt;a href=&quot;/2010/03/backup-for-windows-home-server&quot;&gt;online backup of Windows Home Server&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;For a &lt;a href=&quot;https://web.archive.org/web/20161104062348/http://www.digitalhomethoughts.com/news/show/97408/mozy-is-working-on-a-windows-home-server-software-client.html&quot;&gt;brief period&lt;/a&gt; it looked like &lt;a href=&quot;http://www.mozy.com/&quot;&gt;Mozy&lt;/a&gt; would be releasing a WHS client but that turns out not to be the case. I&apos;d let my free trial with &lt;a href=&quot;https://web.archive.org/web/20100323151943/http://www.keepvault.com:80/&quot;&gt;KeepVault&lt;/a&gt; lapse in anticipation of the Mozy product being released. Oh well :-(&lt;/li&gt;
&lt;li&gt;Found &lt;a href=&quot;https://www.backblaze.com/&quot;&gt;Backblaze&lt;/a&gt; - ($US5/month unlimited) but doubt they work with WHS. Casey from the Backblaze team responded to an email query saying &quot;..don&apos;t have any plans for supporting Server OS like Windows Home Server&quot;&lt;/li&gt;
&lt;li&gt;Others have recommended &lt;a href=&quot;https://web.archive.org/web/20110207095606/http://b3.crashplan.com:80/consumer/features-compare.html&quot;&gt;CrashPlan&lt;/a&gt;, and certainly their prices are competitive with Mozy and Carbonite. Whilst it isn&apos;t officially supported with WHS, at least it &lt;a href=&quot;https://web.archive.org/web/20130926104449/http://support.crashplan.com:80/doku.php/recipe/whs_installation&quot;&gt;gets a mention&lt;/a&gt; on their support site. Poster &quot;Scott&quot; goes into &lt;a href=&quot;https://crashplan.zendesk.com/auth/v3/signin?brand_id=8023340691469&amp;amp;locale=en-us&amp;amp;return_to=https%3A%2F%2Fcrashplan.zendesk.com%2Fhc%2F404&amp;amp;role=end_user&quot;&gt;more detail&lt;/a&gt; on how he got it working with WHS.&lt;/li&gt;
&lt;/ul&gt;
</content>
  </entry>
  <entry>
    <id>https://david.gardiner.net.au/2010/03/backup-for-windows-home-server</id>
    <updated>2010-03-09T21:45:00.001+10:30</updated>
    <title>Backup for Windows Home Server</title>
    <link href="https://david.gardiner.net.au/2010/03/backup-for-windows-home-server" rel="alternate" type="text/html" title="Backup for Windows Home Server"/>
    <category term="Windows Home Server"/>
    <published>2010-03-09T21:45:00.001+10:30</published>
    <summary type="html">Now that my WHS installation is running properly I&apos;m a bit happier because it means I now have a current backup of all of our other computers. That&apos;s a good start, but it doesn&apos;t solve the problem of having an off-site backup.</summary>
    <content type="html">&lt;p&gt;Now that my WHS installation is running properly I&apos;m a bit happier because it means I now have a current backup of all of our other computers. That&apos;s a good start, but it doesn&apos;t solve the problem of having an off-site backup.&lt;/p&gt;
&lt;p&gt;One option is to buy one (or more) external drives – backup the WHS data to the external drive and then transport that drive to a trusted external location. That&apos;s fine, but it would rely on me being disciplined enough to update it at regular intervals – and I&apos;m not sure that I trust myself to remember to do that frequently enough!&lt;/p&gt;
&lt;p&gt;The other option is to use the &apos;cloud&apos; - subscribe to an online backup solution. Googling &quot;&lt;a href=&quot;https://www.google.com.au/search?q=whs+backup&amp;amp;gws_rd=ssl&quot;&gt;WHS Backup&lt;/a&gt;&quot; doesn&apos;t list that many useful results. The top result is a &lt;a href=&quot;https://web.archive.org/web/20231001114822/https://superuser.com/questions/23431/windows-home-server-online-backup-solutions&quot;&gt;relevant question on SuperUser&lt;/a&gt;. Scanning the answers reveals two products that apparently DO work with WHS, and a number of products to avoid because they don&apos;t.&lt;/p&gt;
&lt;h2&gt;KeepVault&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;https://web.archive.org/web/20100327043604/http://www.keepvault.com:80/index.php&quot;&gt;KeepVault&lt;/a&gt; provide online backup for Windows desktops &lt;em&gt;and&lt;/em&gt; Windows Home Server. Their WHS product also includes a &apos;client connector&apos; so you can also backup files from client PC&apos;s too.&lt;/p&gt;
&lt;p&gt;Pricing starts at $US48/year for 40GB. A range of larger amounts are also available including 80, 130, 200, 300-900, 1TB-5TB. They also offer a 15% discount if you pay via PayPal.&lt;/p&gt;
&lt;h2&gt;humyo&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;http://www.humyo.com/pages/en/online-file-storage&quot;&gt;Humyo&lt;/a&gt; don&apos;t specifically mention WHS, but the SuperUser comment indicates it installs and functions correctly.&lt;/p&gt;
&lt;p&gt;Their pricing starts at $US8.21/month or $US82.24/year for 100GB. Additional amounts of 100GB can be added for $US11.74/month&lt;/p&gt;
&lt;h2&gt;Comparison&lt;/h2&gt;
&lt;p&gt;So how do the numbers stack up? The comparison is simpler once you get to 200GB and beyond. To simplify things, I&apos;ve used US dollars and excluded KeepVault&apos;s PayPal discount.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Provider (GB)&lt;/th&gt;
&lt;th&gt;40&lt;/th&gt;
&lt;th&gt;80&lt;/th&gt;
&lt;th&gt;100&lt;/th&gt;
&lt;th&gt;130&lt;/th&gt;
&lt;th&gt;200&lt;/th&gt;
&lt;th&gt;500&lt;/th&gt;
&lt;th&gt;1000&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;&lt;tr&gt;
&lt;td&gt;Humyo&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;82.24&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;223.12&lt;/td&gt;
&lt;td&gt;645.76&lt;/td&gt;
&lt;td&gt;1350.16&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;KeepVault&lt;/td&gt;
&lt;td&gt;48&lt;/td&gt;
&lt;td&gt;89&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;139&lt;/td&gt;
&lt;td&gt;199&lt;/td&gt;
&lt;td&gt;480&lt;/td&gt;
&lt;td&gt;930&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;p&gt;Throwing the numbers into a graph illustrates this nicely. For amounts of data below 200GB, Humyo looks ok, but once you pass that mark KeepVault appears to be the best value.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;../../assets/2010/03/image%5B7%5D.png&quot; alt=&quot;Graph plotting data from table showing cost per gigabyte for Humyo and KeepVault&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I can only see our backup requirements increasing, so at this stage I&apos;m planning to sign up with KeepVault.&lt;/p&gt;
</content>
  </entry>
</feed>
