<?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>windows upgrade | Matt Crawford</title>
	<atom:link href="https://mattcrawford.me/tag/windows-upgrade/feed/" rel="self" type="application/rss+xml" />
	<link>https://mattcrawford.me</link>
	<description>Handyman &#124; Geek &#124; YouTuber</description>
	<lastBuildDate>Tue, 14 Jun 2022 23:46:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
<site xmlns="com-wordpress:feed-additions:1">176948450</site>	<item>
		<title>Delete Windows.old</title>
		<link>https://mattcrawford.me/delete-windows-old/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=delete-windows-old</link>
					<comments>https://mattcrawford.me/delete-windows-old/#respond</comments>
		
		<dc:creator><![CDATA[Matt Crawford]]></dc:creator>
		<pubDate>Tue, 20 Oct 2015 21:49:17 +0000</pubDate>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Windows tips]]></category>
		<category><![CDATA[windows upgrade]]></category>
		<guid isPermaLink="false">http://twist3d.net/?p=1262</guid>

					<description><![CDATA[<p>Have you recently did a in-place upgrade on your windows system but now want to remove the windows.old folder? Well this is the proper way to remove windows.old without causing a bunch of issues. First download junction.exe from sysinternals, Extract it to c:tools (create folder if it doesn&#8217;t exist) Open a cmd prompt as admin and [&#8230;]</p>
The post <a href="https://mattcrawford.me/delete-windows-old/">Delete Windows.old</a> first appeared on <a href="https://mattcrawford.me">Matt Crawford</a>.]]></description>
										<content:encoded><![CDATA[<p>Have you recently did a in-place upgrade on your windows system but now want to remove the windows.old folder?</p>
<p>Well this is the proper way to remove windows.old without causing a bunch of issues.</p>
<p>First download <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768">junction.exe</a> from sysinternals, Extract it to c:tools (create folder if it doesn&#8217;t exist)</p>
<p>Open a cmd prompt as admin and run the following:</p>
<pre style="margin-top: 0px; padding: 5px; border: 0px; font-size: 13px; overflow: auto; width: auto; max-height: 600px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: #222222; background-color: #eeeeee;"><code style="margin: 0px; padding: 0px; border: 0px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;">c:\tools\junction.exe -s -q C:windows.old &gt; %temp%junc.txt</code></pre>
<p>When that is finished open power shell by typing the following in the cmd window</p>
<pre style="margin-top: 0px; padding: 5px; border: 0px; font-size: 13px; overflow: auto; width: auto; max-height: 600px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: #222222; background-color: #eeeeee;"><code style="margin: 0px; padding: 0px; border: 0px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;">start powershell.exe</code></pre>
<p>then run this powershell script which removes all the junction points</p>
<pre style="margin-top: 0px; padding: 5px; border: 0px; font-size: 13px; overflow: auto; width: auto; max-height: 600px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: #222222; background-color: #eeeeee;"><code style="margin: 0px; padding: 0px; border: 0px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;"> foreach ($line in [System.IO.File]::ReadLines("$env:tempjunc.txt"))
 {
     if ($line -match "^\\")
     {
         $file = $line -replace "(: JUNCTION)|(: SYMBOLIC LINK)",""
         &amp; c:\tools\junction.exe -d "$file"
     }
 }</code></pre>
<p>switch back to cmd.exe window and run the following 3 commands</p>
<pre style="margin-top: 0px; padding: 5px; border: 0px; font-size: 13px; overflow: auto; width: auto; max-height: 600px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; word-wrap: normal; color: #222222; background-color: #eeeeee;"><code style="margin: 0px; padding: 0px; border: 0px; font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif; white-space: inherit;"> takeown /F C:\windows.old /R /D Y
 cacls C:\windows.old /T /G Everyone:F
 rd /s /q C:\windows.old</code></pre>
<p>Now the windows.old folder should be deleted.</p>
<p>Update: There is an easier method than doing all the steps listed above. <a href="http://www.howtogeek.com/223821/what-is-the-windows.old-folder-and-how-do-you-delete-it/">Follow this guide.</a></p>The post <a href="https://mattcrawford.me/delete-windows-old/">Delete Windows.old</a> first appeared on <a href="https://mattcrawford.me">Matt Crawford</a>.]]></content:encoded>
					
					<wfw:commentRss>https://mattcrawford.me/delete-windows-old/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1262</post-id>	</item>
	</channel>
</rss>
