<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>plee.me &#187; Guides / How Tos</title>
	<atom:link href="http://www.plee.me/blog/category/guides/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.plee.me/blog</link>
	<description>About software, technology and random things</description>
	<lastBuildDate>Wed, 30 Jun 2010 20:38:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Internet Connection Reset on the Speedport W 722V (Type B)</title>
		<link>http://www.plee.me/blog/2010/04/internet-connection-reset-on-the-speedport-w-722v-type-b/</link>
		<comments>http://www.plee.me/blog/2010/04/internet-connection-reset-on-the-speedport-w-722v-type-b/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 16:51:25 +0000</pubDate>
		<dc:creator>pl</dc:creator>
				<category><![CDATA[Guides / How Tos]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[722v]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[deutsche]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[reconnecting]]></category>
		<category><![CDATA[reconnection]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[resetting]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[speedport]]></category>
		<category><![CDATA[t-home]]></category>
		<category><![CDATA[t-online]]></category>
		<category><![CDATA[telekom]]></category>
		<category><![CDATA[typ b]]></category>
		<category><![CDATA[type b]]></category>
		<category><![CDATA[w]]></category>

		<guid isPermaLink="false">http://www.plee.me/blog/?p=99</guid>
		<description><![CDATA[Hi! Since I've recently found out that my new router, the T-Home Speedport W 722V Type B, apparently does not support automatic disconnecting at a specific time (in order to circumvent the 24-hour connectionreset by my ISP), I took a route that my good friend Pool has been using for quite some time. It is [...]]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>Since I've recently found out that my new router, the T-Home Speedport W 722V Type B, apparently does not support automatic disconnecting at a specific time (in order to circumvent the 24-hour connectionreset by my ISP), I took a route that my good friend Pool has been using for quite some time.</p>
<p>It is a batch script, so in order to use it, you have to be able to execute it.</p>
<p>On a side note, the Type A model of this router does support automatic disconnecting! Make sure you choose <em>"Other provider"</em> when you're in the internet configuration menu in order to be able to see the setting for that. The <em>"T-Online"</em> option sadly does not show it.</p>
<h2>What you need:</h2>
<ul>
<li>A Windows machine that is running at the given time (has to execute the script)</li>
<li><a href="http://curl.haxx.se/">cURL</a> for Windows, preferably the <em>win32-ssl-sspi</em> version (<a href="http://curl.haxx.se/latest.cgi?curl=win32-ssl-sspi">download page</a>). win32-ssl should be fine as well.</li>
<li>Configure a scheduled task for the script, which is not covered in this guide (but quite simple. Just make it execute the script.)</li>
</ul>
<h2>The batch script:</h2>
<pre>REM Speedport W 722V Type B Internet Reset Script v1.0 - 2010-04-29
REM Written by pl (plee.me)
REM
REM Works with the T-Home Speedport W 722V Type B home router.

REM START CONFIGURATION
REM Adjust these variables to your own ones!
SET PWD=12345678
SET COOKIEFILE="routercookies.txt"
REM END OF CONFIGURATION

@echo off
curl -k https://speedport.ip/cgi-bin/login.cgi -d "pws=%PWD%" -e "https://speedport.ip/hcti_start_passwort.stm" -c "%COOKIEFILE%"
curl -k https://speedport.ip/cgi-bin/status_startseite.cgi -d "connect=0&amp;disconnect=1&amp;block=0&amp;nonblock=0&amp;abc=0" -e "https://speedport.ip/hcti_startseite.stm" -b "%COOKIEFILE%"
curl -k https://speedport.ip/cgi-bin/status_startseite.cgi -d "connect=1&amp;disconnect=0&amp;block=0&amp;nonblock=0&amp;abc=0" -e "https://speedport.ip/hcti_startseite.stm" -b "%COOKIEFILE%"
curl -k https://speedport.ip/cgi-bin/logoutall.cgi -e "https://speedport.ip/hcti_startseite.stm" -b "%COOKIEFILE%"
del "%COOKIEFILE%"
</pre>
<h2>What this script does:</h2>
<p>It logs on the web administration interface, uses a hidden option to disconnect the internet connection, then uses a hidden option to connect, and finally logs out again.</p>
<p>Because the cookie is cached in a text file, it is deleted at the end of the script.</p>
<h2>Additional information:</h2>
<p>The lines beginning with <em>REM</em> are comments, so you might as well leave them out.</p>
<p>If you run the script, make sure that you either have the cURL directory in the PATH environment variable, or that you set its folder as the <strong>working directory</strong>, so that it can find the curl.exe and actually execute the (central) steps of the script.</p>
<p>I'm sure that this script can be optimized (probably a lot), but for now, it's doing the job.</p>
<p>I hope that was of any help to you, and thanks for reading! <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.plee.me/blog/2010/04/internet-connection-reset-on-the-speedport-w-722v-type-b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDFCreator and mybrowserbar.com (Adware!)</title>
		<link>http://www.plee.me/blog/2010/01/pdfcreator-and-mybrowserbar-com-adware/</link>
		<comments>http://www.plee.me/blog/2010/01/pdfcreator-and-mybrowserbar-com-adware/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 17:05:40 +0000</pubDate>
		<dc:creator>pl</dc:creator>
				<category><![CDATA[Guides / How Tos]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[adware]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[mybrowserbar]]></category>
		<category><![CDATA[mybrowserbar.com]]></category>
		<category><![CDATA[pdfcreator]]></category>
		<category><![CDATA[pdfforge]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search settings]]></category>
		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://www.plee.me/blog/?p=91</guid>
		<description><![CDATA[Hi! If you have recently encountered a weird behavior within your browser (I only know of Firefox because that's what I use), chances are that Adware has been installed onto your computer. When I was looking for a picture on my own website and I mistyped the URL, I noticed that immediately after it showed [...]]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>If you have recently encountered a weird behavior within your browser (I only know of Firefox because that's what I use), chances are that Adware has been installed onto your computer.</p>
<p>When I was looking for a picture on my own website and I mistyped the URL, I noticed that immediately after it showed me my custom 404 page, I was redirected to a domain called mybrowserbar.com. The URL was:</p>
<pre>http://www.mybrowserbar.com/cgi/errors.cgi?q=<em>[404URL]</em>&amp;type=404&amp;ISN=<em>[funkystring32]</em>&amp;ccv=130&amp;cnid=302398&amp;cco=US&amp;ct=12</pre>
<p>with <em>[404URL]</em> as the wrong URL. <em>[funkystring32]</em> seemed to be some kind of MD5 string (32 characters, 0-9, A-F), maybe a unique identifier.</p>
<p>After searching the internet for a couple of minutes, I read a thread on the official Avira forums. In it it was explained that PDFCreator comes with an Adware called "Search Settings Plugin" that installs and enables itself in Firefox. Luckily, being a normal addon, the problem was quickly solved from there: <em>Tools =&gt; AddOns =&gt; Extensions =&gt; Search Settings Plugin =&gt; Uninstall/Disable</em>.</p>
<p>I can only shake my head at things like this.</p>
<p>There has also been discussion on the official pdfforge (PDFCreator) forums about this:</p>
<p><a href="http://en.pdfforge.org/forum/open-discussion/3140-search-settings-plugin-installed-wo-users-knowledge-along-yahoo-search">http://en.pdfforge.org/forum/open-discussion/3140-search-settings-plugin-installed-wo-users-knowledge-along-yahoo-search</a></p>
<p><a href="http://www.pdfforge.org/files/old_forum/2903.html">http://www.pdfforge.org/files/old_forum/2903.html</a></p>
<p>Thanks to the people at the official Avira forums! Oh, and nevertheless, in all honesty: thanks to pdfforge for providing such a nice tool. I have the feeling it's gonna be of great help to me in the future <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Source: <a href="http://forum.avira.com/wbb/index.php?page=Thread&amp;postID=895237">http://forum.avira.com/wbb/index.php?page=Thread&amp;postID=895237</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.plee.me/blog/2010/01/pdfcreator-and-mybrowserbar-com-adware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenVPN on Windows Vista / 7 &#8211; Ping says: TTL expired in transit</title>
		<link>http://www.plee.me/blog/2009/10/openvpn-on-windows-vista-7-ping-says-ttl-expired-in-transit/</link>
		<comments>http://www.plee.me/blog/2009/10/openvpn-on-windows-vista-7-ping-says-ttl-expired-in-transit/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 22:12:22 +0000</pubDate>
		<dc:creator>pl</dc:creator>
				<category><![CDATA[Guides / How Tos]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[expired in transit]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[ttl]]></category>
		<category><![CDATA[uac]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://www.plee.me/blog/?p=79</guid>
		<description><![CDATA[Hi there! When I set up my VPN with OpenVPN yesterday, I found out about a little difficulty under Windows Vista and 7. Thankfully it was not that much of a hurdle as the UAC was the reason for this bug just like for a series of other bugs with different software I experimented with [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there!</p>
<p>When I set up my VPN with <a href="http://www.openvpn.net/">OpenVPN</a> yesterday, I found out about a little difficulty under Windows Vista and 7. Thankfully it was not that much of a hurdle as the UAC was the reason for this bug just like for a series of other bugs with different software I experimented with over the last few weeks. Nevertheless I hope that this piece of information helps you get rid of the following problem.</p>
<p>If you have set up your VPN and got it running without any major problems, and everything seems to be running just fine (connecting works), but you still can't establish connections to the other machines, you might find that pinging returns the error message <em>"TTL expired in transit"</em>. This is due to the fact that Vista (or Windows 7) needs administrator privileges to adjust your computer's settings properly in order to function when you've connected to the VPN successfully. I think it's about the route.exe process, but I'm not 100% sure.</p>
<p>Windows Vista and 7 have the equally famous as infamous UAC (User Account Control) that prevents even administrator privileged accounts from executing programs with administrator rights by default. In order to enable these rights you have to right-click the program (or program shortcut) and click on <em>"Run as administrator"</em> next to the yellow-blue shield if it does not run with administrator rights exclusively anyway (in which case you'd see the yellow-blue shield in the bottom right corner of the program icon itself and would be asked for administrator privileges automatically when you launch it as any other program).</p>
<p><strong>Please note that the following steps are for on-demand OpenVPN connections. For automatic connections, read further below.</strong></p>
<h2>OpenVPN on-demand connection</h2>
<p>So what you need to do is launch the connection with UAC. But how do you do that if you usually launch OpenVPN connections with a right-click and <em>"Start OpenVPN on this config file"</em>? Even creating a shortcut to the .ovpn file doesn't give you the <em>"Run as administrator"</em> option.</p>
<p>A simple solution is to create a batch file that simply changes to the work directory and executes .ovpn with the openvpn.exe.</p>
<p>Example file "ovpn_connection1.bat":</p>
<pre>@echo off
D:
cd \Programs\OpenVPN\config-ondemand\
D:\Programs\OpenVPN\bin\openvpn.exe D:\Programs\OpenVPN\config-ondemand\connection1.ovpn</pre>
<p>This batch file has the following parameters/assumptions:</p>
<ul>
<li>Your OpenVPN dir is on the D: partition (otherwise change the drive letter in the respective paths and leave the <em>"D:"</em> line out altogether).</li>
<li>The path to your OpenVPN dir is <em>D:\Programs\OpenVPN</em>.</li>
<li>Your connection configuration file is located in the <em>config-ondemand</em> subdirectory.</li>
</ul>
<p>Basically, you just switch to the work directory and execute OpenVPN's <em>openvpn.exe</em> located in its <em>bin</em> dir on the configuration. In a way, this works as a shortcut, but just as an executable batch.</p>
<p>The <em>@echo off</em> part is just so that you won't see the other commands displayed in the window each time you start the connection.</p>
<p>Now you either make a shortcut to this batch file or use it itself.</p>
<p>Whenever you want to start the connection, <em>right-click</em> on it and select <em>"Run as administrator"</em>.</p>
<p>Done! Test your ping and it should be fine.</p>
<h2>OpenVPN automatic connection</h2>
<p>All you need to do is to move the .ovpn configuration file and all the other required files into the <em>config</em> subdirectory of your OpenVPN installation.</p>
<p>When the OpenVPN service (Start =&gt; Run =&gt; services.msc) is started, it will look for .ovpn files in its <em>config</em> subdirectory and execute them all - with SYSTEM privileges. No UAC circumvention needed.</p>
<p>So just set your OpenVPN service to <em>"Automatic"</em> and you're good to go!</p>
<h2>OpenVPN on-demand connection with OpenVPN service</h2>
<p>Just do what is described under the "OpenVPN automatic connection" paragraph except for setting the service to <em>"Manual"</em>.</p>
<p>Now each time you want to launch the connection, you just need to type <em>"net start OpenVPNService"</em>. To stop it, type <em>"net stop OpenVPNService"</em>.</p>
<h2>Note on using connections with the OpenVPN service</h2>
<p>As the OpenVPN service feature executes *all* .ovpn configuration in the <em>config</em> subdirectory, there is no way to manually interfere with one particular connection of that directory and let's say disable it shortly. All <em>config</em>-connections are handled as a group with the OpenVPN service.</p>
<p>So if you need manual independency, look at the on-demand section.</p>
<p>I hope this wasn't all too fuzzy with the wordings and such.</p>
<p>Please comment or contact me if you have any questions on this matter.</p>
<p>Thanks for reading!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plee.me/blog/2009/10/openvpn-on-windows-vista-7-ping-says-ttl-expired-in-transit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling Windows Vista / 7 Explorer&#8217;s Automatic Folder Type Discovery</title>
		<link>http://www.plee.me/blog/2009/08/disabling-windows-vista-7-explorers-automatic-folder-type-discovery/</link>
		<comments>http://www.plee.me/blog/2009/08/disabling-windows-vista-7-explorers-automatic-folder-type-discovery/#comments</comments>
		<pubDate>Thu, 13 Aug 2009 14:27:48 +0000</pubDate>
		<dc:creator>pl</dc:creator>
				<category><![CDATA[Guides / How Tos]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bagmru]]></category>
		<category><![CDATA[bags]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[discovery]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://www.plee.me/blog/?p=65</guid>
		<description><![CDATA[Hey! I very recently installed Windows 7 on my desktop computer and I'm loving it so far. One of the major things that bugged me though was the new Explorer behavior. The automatic folder type discovery just goes ahead and tries to determine a folder type just by looking at how many (or if there [...]]]></description>
			<content:encoded><![CDATA[<p>Hey!</p>
<p>I very recently installed Windows 7 on my desktop computer and I'm loving it so far.</p>
<p>One of the major things that bugged me though was the new Explorer behavior. The automatic <em>folder type discovery</em> just goes ahead and tries to determine a folder type just by looking at how many (or if there are) files of a certain type (pictures, videos, songs, ...) are in the current folder, and then it adjusts the viewing settings accordingly. For example, if you open a folder that contains mainly video files, it would show those with big icons instead of my default, a detailed list. Pictures are displayed as thumbnails.</p>
<p>Disabling this behavior proved to be interestingly difficult. As with most things that have been declared a default setting by Microsoft, it luckily can be done - but only via registry.</p>
<p><strong>First we need to delete our current folder type settings.</strong></p>
<ul>
<li>Close all open Explorer windows.</li>
<li>Open the registry editor with <em>Start =&gt; Run =&gt; cmd</em> and browse to <em>HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell</em>.</li>
<li>Delete and confirm the deletion of the keys <em>BagMRU</em> and <em>Bags</em>.</li>
<li>Now create a Key (right-click on the current key in the left pane and select <em>New =&gt; Key</em>) called <em>Bags</em>.</li>
<li>Create a subkey for <em>Bags</em> called <em>AllFolders</em>.</li>
<li>Create a subkey for <em>AllFolders</em> called <em>Shell</em>.</li>
<li>Create a String value (right-click in the right pane and select <em>New =&gt; String Value</em>) called <em>FolderType</em> and set the value to <em>NotSpecified</em>.</li>
<li>That's it for Windows 7. Please read the note for Windows Vista x64 below. Otherwise, just reboot and your new settings should be applied.</li>
</ul>
<p>That's it for Windows 7. If you're using Windows Vista x64, it might be possible that there is a copy of (or a similar) the <em>Local Settings\Software\Microsoft\Windows\Shell</em> key in <em>HKEY_CURRENT_USER\Software\Classes\Wow6432Node</em>. I could not confirm this for Windows 7, though I am using the 64 bit version (it just had a <em>CLSID</em> subkey, nothing more). In that case, delete the <em>Shell\Bags</em> and <em>Shell\BagMRU</em> folders like I told you above before finishing your modifications with a reboot.</p>
<p><strong>Warning:</strong> as always, playing around with the Windows registry can be dangerous when done incorrectly. If you do not feel safe about it, make sure to back up the keys you're about to modify via File =&gt; Export, or leave it altogether. I do not take any responsibility for any damage, nor do I give any guarantee that the steps I provided here will work for you. At least they worked for me.</p>
<p>Hopefully that was of help to you <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I discovered the initial instructions on <a href="http://www.mydigitallife.info/2007/11/08/disable-automatic-folder-type-discovery-for-templates-in-vista/">mydigitallife.info</a>. Thank's so much <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Had a hard time finding a guide for that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plee.me/blog/2009/08/disabling-windows-vista-7-explorers-automatic-folder-type-discovery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To: Migrate an Existing Windows System to Another Hard Drive Using Acronis TrueImage</title>
		<link>http://www.plee.me/blog/2009/06/how-to-migrate-an-existing-windows-system-to-another-hard-drive/</link>
		<comments>http://www.plee.me/blog/2009/06/how-to-migrate-an-existing-windows-system-to-another-hard-drive/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 14:43:05 +0000</pubDate>
		<dc:creator>pl</dc:creator>
				<category><![CDATA[Guides / How Tos]]></category>
		<category><![CDATA[acronis]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[existing]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[mbr]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[trueimage]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.plee.me/?p=45</guid>
		<description><![CDATA[Hi! Because of a new hard drive I bought a week ago I decided to transfer my existing system, running on a 250 GB hard drive, to my new 1 TB one. I was lucky enough to at least have made some experiences with migrating an existing system to a Virtual Machine in conjunction with [...]]]></description>
			<content:encoded><![CDATA[<p>Hi!</p>
<p>Because of a new hard drive I bought a week ago I decided to transfer my existing system, running on a 250 GB hard drive, to my new 1 TB one. I was lucky enough to at least have made some experiences with migrating an existing system to a Virtual Machine in conjunction with Acronis TrueImage Home 2009 before, so that's what came in handy for me.</p>
<h3>What you need</h3>
<ul>
<li>Backup software like <a href="http://www.acronis.com/">Acronis TrueImage Home 2009</a></li>
<li><a href="http://www.nu2.nu/pebuilder/">BartPE</a> with <a href="http://kb.acronis.com/content/1506">Acronis TrueImage Plug-In</a> / bootable version of your backup software</li>
<li>Windows installation disc (preferably the same Windows version as your current system)</li>
<li>New system hard drive which is either empty or ready to be re-formatted (backup your important data on it!)</li>
</ul>
<h3>Procedure</h3>
<ol>
<li>Start Acronis TrueImage Home 2009 and make a backup of your system partition.</li>
<li>Save the backup to a partition / hard drive that you will have access to later on while using the bootable backup restorer. This means: No (TrueCrypt-)encrypted partition. Ideally it would fit on a disc or USB stick (which my didn't with a size of 7 GB). Just make sure you will be able to access it later on. I know BartPE is able to access all hard drives (without encryption at least) and should give you access to a USB drive as well, as long as you have it connected while it's booting up. If you don't want to move it over to a USB drive or DVD or anything else, there is also a nice little trick at the end of this howto: (*).</li>
<li>Shut down your computer and make sure your new system drive is connected as the first device to avoid improper device numbering. This means using the first connector for SATA/IDE or whatever. If you are using both SATA and IDE, I don't know how that's handled. I'm just assuming you somehow have figured it out <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Boot from your Windows installation disc.</li>
<li>If you haven't done it previously under Windows, partition the new system drive properly. That means to have the partitions created in the correct order. If you haven't (or aren't sure any more), delete them and do it over again just to make it right. Maybe the order is not necessary, but I had a lot of trouble with that before, so I'm just playing safe.</li>
<li>Install Windows as usual to the point when you've started up your brand new Windows installation for the first time and are watching the Start Menu in awe.</li>
<li>Boot from your bootable backup software (or BartPE with the plugin) and fire it up.</li>
<li>Restore the image. Don't select <em>MBR / Track 0</em>, however, because we just created a proper MBR (Master Boot Record) by installing Windows.</li>
<li>That's it! You should be done. Now a reboot should provide you with your old system on a new hard drive. Congratulations <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>I don't guarantee anything, and I admit to having tried several methods for half a day till I got it right <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This should work fine though, because it basically is what I did the time when it finally worked.</p>
<p><strong>If you have partitions with programs on it that would be started on bootup, make sure you copy it (file by file) before you start your system on the new hard drive.</strong></p>
<p>While you could do that by connecting your old system drive and booting from that, then copying the files over, you could also do it beforehand by using the Windows Disk Management tool to erase all partitions and partition it properly before the Windows installation. This allows you to format the specific partitions and copy the files over to it while you're still on your old system. <strong>(*) Also, you can add the backup image onto that partition, so you don't have to burn a DVD or move the image over to a USB stick or ... (you get the point).</strong> However, if you create and format the partitions on your old system, make sure to</p>
<ul>
<li>(naturally) not touch them during the Windows installation progress or your data on them will be inaccessible</li>
<li>rename your partitions properly after booting up your new system because your old Windows already assigned them (probably different) drive letters. You can do that in the Windows Disk Management tool as well.</li>
</ul>
<p>I hope I didn't forget anything. If I did, I'll be sure to add it later on <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks for reading and good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plee.me/blog/2009/06/how-to-migrate-an-existing-windows-system-to-another-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Migrate Your Live Windows System To VirtualBox</title>
		<link>http://www.plee.me/blog/2009/06/how-to-migrate-your-live-windows-system-to-virtualbox/</link>
		<comments>http://www.plee.me/blog/2009/06/how-to-migrate-your-live-windows-system-to-virtualbox/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 17:02:07 +0000</pubDate>
		<dc:creator>pl</dc:creator>
				<category><![CDATA[Guides / How Tos]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[live system]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.plee.me/wordpress/?p=25</guid>
		<description><![CDATA[Hey! Ever regret that Sun didn't include something like a migration assistant for your live Windows system in VirtualBox? My method concentrates on these basic steps: Create a backup of your whole system partition Create a new VirtualBox Hard Disk Install Windows onto the VirtualBox Hard Disk to create a function MBR (Master Boot Record) [...]]]></description>
			<content:encoded><![CDATA[<p>Hey!</p>
<p>Ever regret that Sun didn't include something like a migration assistant for your live Windows system in VirtualBox?</p>
<p>My method concentrates on these basic steps:</p>
<ul>
<li>Create a backup of your whole system partition</li>
<li>Create a new VirtualBox Hard Disk</li>
<li>Install Windows onto the VirtualBox Hard Disk to create a function MBR (Master Boot Record)</li>
<li>Apply the backup onto your VirtualBox Hard Disk</li>
</ul>
<p>Done!</p>
<h3><strong>What you need:</strong></h3>
<ul>
<li><a href="http://www.virtualbox.org/">Sun VirtualBox</a></li>
<li><a href="http://www.acronis.com/">Acronis TrueImage Home 2009</a> (or an equivalent backup program)</li>
<li>File-to-ISO converter (like a CD/DVD burning program, e.g. <a href="http://www.nero.com/">Ahead Nero</a> or <a href="http://www.alcohol-soft.com/">Alcohol 120%</a>)</li>
<li>The Windows installation disc</li>
</ul>
<h3><strong>Process:</strong></h3>
<ul>
<li>Start Acronis TrueImage and create a backup of your whole system partition. For version 2009 doesn't mean <em>System State</em> but <em>My Computer</em> =&gt; <em>Disk 1</em> =&gt; <em>C:</em>. Leave <em>Back up sector-by-sector</em> unchecked<em>. </em>Adjust the other settings to your liking and start the backup process.</li>
<li>Go to <em>Tools</em> =&gt; <em>Create Bootable Rescue Media</em> and create the image as an ISO file.</li>
<li>Use your File-to-ISO converter or burning software to convert your .tbi backup file to an ISO that you will be able to mount it as a CD/DVD later on. (Reason being that I had problems selecting the right partition to be replaced by the backup when I had two partitions mounted to the virtual machine - the other one included the backup file. Also you won't be able to install the Guest Additions, so you can't mount folders over the VirtualBox shared folders.)</li>
<li>Start VirtualBox and create a new <em>Machine</em>. Choose your current OS and name it as you like.</li>
<li>During the process create a new <em>Boot Hard Disk</em> and give it the <em>same size</em> as your current system partition (maybe less if you know the size will be enough).</li>
<li>Adjust the settings of your new machine and start it.</li>
<li>Mount the Windows installation disc and install Windows. This is so that a proper MBR (Master Boot Record) is created because we will need one in order to boot from the final system.</li>
<li>After the Windows installation (as soon as you see the Windows Start Menu and stuff), mount the <em>Acronis Bootable Rescue Media ISO</em> as a CD/DVD and boot from it.</li>
<li>Select <em>Acronis True Image Home (Full Version)</em> and you'll see the TrueImage program like you did in Windows.</li>
<li>Dismount the current CD/DVD image.</li>
<li>Mount your the ISO with your backup file.</li>
<li>Click on <em>Manage and Restore</em> =&gt; <em>Browse for backup...</em> and open the CD/DVD Drive which should have the backup image file right there. If it doesn't, try unmounting and remounting it again.</li>
<li>Right-click on the backup in the list and select <em>Restore</em>.</li>
<li>Select the hard disk (partition) you just created and continue. Make sure that the <em>Restore MBR (Master Boot Recover) / Track 0</em> checkbox is unchecked.</li>
<li>Let it run through.</li>
<li>Now reboot your machine.</li>
<li>Congratulations! You should have a working copy of your live system in VirtualBox!</li>
</ul>
<p>I guess there are a couple of kinks here and there because I didn't actually do it like that (I installed Windows on the virtual machine before I attempted to restore via Acronis Bootable Rescue Media ... yeah, silly me <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ) and it was about 3 days ago, so I'm writing off the top of my head.</p>
<p>Please give me feedback if it worked! (And also if it didn't!) <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>In the case of Windows XP (and probably Vista and 7) because of the major change of hardware (actual drivers replaced by virtual drivers) you will be required to re-activate your Windows copy. XP gives you a maximum of 3 days for that.</strong></p>
<p>Just thought I'd mention it for clarity's sake <img src='http://www.plee.me/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Good luck and have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plee.me/blog/2009/06/how-to-migrate-your-live-windows-system-to-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
