<?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>Sérgio's blog &#187; Windows</title>
	<atom:link href="http://www.smachado.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smachado.com</link>
	<description>About computers, software, gadgets, programming and more....</description>
	<lastBuildDate>Sun, 16 May 2010 20:40:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Move grub from internal disk to external storage</title>
		<link>http://www.smachado.com/2010/01/move-grub-from-internal-disk-to-external-storage/</link>
		<comments>http://www.smachado.com/2010/01/move-grub-from-internal-disk-to-external-storage/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:09:48 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=148</guid>
		<description><![CDATA[When I installed Ubuntu Linux on my USB 8GB stick I didn&#8217;t noticed where grub was being installed. After a while I noticed that I could only boot my Windows installation (on the internal hard drive) via the USB 8GB stick.
What happened was that Ubuntu install changed the master boot record (MBR) of my internal [...]]]></description>
			<content:encoded><![CDATA[<p>When I installed Ubuntu Linux on my USB 8GB stick I didn&#8217;t noticed where grub was being installed. After a while I noticed that I could only boot my Windows installation (on the internal hard drive) via the USB 8GB stick.</p>
<p>What happened was that Ubuntu install changed the master boot record (MBR) of my internal drive and set it up to load the remaining of Grub (it is split in 2 because otherwise it wouldn&#8217;t fit on the MBR) from the USB storage.</p>
<p>To fix this I could use the Windows tools (fixmbr) but that requires me to boot using the recovery console and login as system administrator. Although using fixmbr would restore the Windows boot loader it would erase grub and make the USB storage  not bootable.</p>
<p>What worked for me was MbrFix from sysint (www.sysint.no). REMARK: following the instructions below might make your computer unusable and eventually make you lose data.</p>
<p>First I got the list of partitions on my internal disk:</p>
<pre>C:\&gt;MbrFix.exe /drive 0 listpartitions
# Boot Size (MB) Type
1 Yes     76316    7  NTFS or HPFS
2             0    0  None
3             0    0  None
4             0    0  None</pre>
<p>Next I saved my internal disk mbr to a file:</p>
<pre>C:\&gt;MbrFix.exe /drive 0 savembr Backup_MBR_0.bin</pre>
<p>Next I listed my partitions on my USB disk drive:</p>
<pre>C:\&gt;MbrFix.exe /drive 1 listpartitions
# Boot Size (MB) Type
1          6440  131  Linux native (usually ext2fs)
2          1223  130  Prime
3             0    0  None
4             0    0  None</pre>
<p>Now I want to put grub on my USB disk:</p>
<pre>C:\&gt;MbrFix.exe /drive 1 restorembr Backup_MBR_0.bin
You are about to Restore MBR,
are you sure (Y/N)? Y</pre>
<p>Now let&#8217;s see how the partition looks like:</p>
<pre>C:\&gt;MbrFix.exe /drive 1 listpartitions
# Boot Size (MB) Type
1 Yes     76316    7  NTFS or HPFS
2             0    0  None
3             0    0  None
4             0    0  None</pre>
<p>Ups! what happened there? My Linux partitions are gone&#8230; Let me try and fix this&#8230;</p>
<pre>C:\&gt;MbrFix.exe /drive 1 /partition 1 setpartitiontype 131
You are about to Set partition type,
are you sure (Y/N)? Y
Partition 1, type before: 7 NTFS or HPFS
Partition 1, type after: 131 Linux native (usually ext2fs)

C:\&gt;MbrFix.exe /drive 1 /partition 2 setpartitiontype 130
You are about to Set partition type,
are you sure (Y/N)? Y
Partition 2, type before: 0 None
Partition 2, type after: 130 Prime

C:\&gt;MbrFix.exe /drive 1 listpartitions
# Boot Size (MB) Type
1 Yes     76316  131  Linux native (usually ext2fs)
2             0  130  Prime
3             0    0  None
4             0    0  None</pre>
<p>Looks like by setting the partition types back to their original values solved the problem.. yes it did.. ufff&#8230;</p>
<p>Now let&#8217;s restore the original Windows boot loader on the internal disk:</p>
<pre>C:\Documents and Settings\machados\My Documents\Downloads&gt;MbrFix.exe /drive 0 fixmbr
You are about to Fix MBR,
are you sure (Y/N)? Y</pre>
<p>Now I could boot the system without the USB disk connected to my laptop.</p>
<p>I could also boot my Linux system by connected the USB disk and selecting &#8220;boot from usb storage&#8221; from my bios boot menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2010/01/move-grub-from-internal-disk-to-external-storage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flex 3 SDK: First Steps</title>
		<link>http://www.smachado.com/2009/09/flex-3-sdk-first-steps/</link>
		<comments>http://www.smachado.com/2009/09/flex-3-sdk-first-steps/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 00:07:15 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Flex]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=118</guid>
		<description><![CDATA[This post will guide you to install Flex SDK 3.4 on Windows XP and compile and run the examples on it. We&#8217;ll be using the command line, a text editor. No Flex Builder.
Step 1:
Download Flex SDK 3.4 to your computer.
Step 2:
Extract to c:\flex_sdk_3.4
Step 3:
Browse to C:\flex_sdk_3.4\runtimes\player\10\win and run:
Install Flash Player 10 ActiveX.exe
Install Flash Player 10 [...]]]></description>
			<content:encoded><![CDATA[<p>This post will guide you to install Flex SDK 3.4 on Windows XP and compile and run the examples on it. We&#8217;ll be using the command line, a text editor. No Flex Builder.</p>
<p><strong>Step 1:</strong></p>
<p>Download Flex SDK 3.4 to your computer.</p>
<p><strong>Step 2:</strong></p>
<p>Extract to c:\flex_sdk_3.4</p>
<p><strong>Step 3:</strong></p>
<p>Browse to C:\flex_sdk_3.4\runtimes\player\10\win and run:</p>
<p>Install Flash Player 10 ActiveX.exe</p>
<p>Install Flash Player 10 Plugin.exe</p>
<p><strong>Step 4:</strong></p>
<p>Browse to C:\flex_sdk_3.4\samples\explorer</p>
<p><strong>Step 5:</strong></p>
<p>Run build.bat</p>
<p>This will take a while because it will recursively compile all mxml files.</p>
<p><strong>Step 6:</strong></p>
<p>Run explorer.html</p>
<p>Experiment with the samples provided.</p>
<p><strong>Step 7:</strong></p>
<p>Let&#8217;s create an hello world application. Using an editor of your choice create a text file and save it as &#8220;helloworld.mxml&#8221; &#8211; the directory doesn&#8217;t really matter but let&#8217;s say c:\helloworld\.</p>
<p><strong>Step 8:</strong></p>
<p>Copy the following xml text into the helloworld.mxml file.</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;http://www.adobe.com /2006/mxml&#8221;&gt;<br />
&lt;mx:HBox&gt;<br />
&lt;mx:Label text=&#8221;Hello World from Flex!&#8221;/&gt;<br />
&lt;/mx:HBox&gt;<br />
&lt;/mx:Application&gt;</p></blockquote>
<p><strong>Step 9:</strong></p>
<p>Compile your mxml file into an swf file using the following command at the command prompt:</p>
<p>C:\flex_sdk_3.4\bin\mxmlc.exe helloworld.mxml</p>
<p><strong>Step 10:</strong></p>
<p>Run your swf file. The Flash player should open and execute your file. Your &#8220;Hello World from Flex&#8221; message will show up.</p>
<p><strong>References:</strong></p>
<p><a title="http://livedocs.adobe.com/flex/3/html/" href="http://livedocs.adobe.com/flex/3/html/" target="_blank">http://livedocs.adobe.com/flex/3/html/</a></p>
<p><a title="http://www.adobe.com/support/documentation/en/flex/" href="http://www.adobe.com/support/documentation/en/flex/" target="_blank">http://www.adobe.com/support/documentation/en/flex/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/09/flex-3-sdk-first-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No link light while connecting to network</title>
		<link>http://www.smachado.com/2009/09/no-link-light-while-connecting-to-network/</link>
		<comments>http://www.smachado.com/2009/09/no-link-light-while-connecting-to-network/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 21:57:31 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=115</guid>
		<description><![CDATA[I got a new laptop to work with and noticed that if I plugged a network cable into it to connect to certain networks sometimes it worked sometimes it didn&#8217;t &#8211; I couldn&#8217;t even see a link light at the socket.
I thought this would be a driver issue of the laptop so I was ready [...]]]></description>
			<content:encoded><![CDATA[<p>I got a new laptop to work with and noticed that if I plugged a network cable into it to connect to certain networks sometimes it worked sometimes it didn&#8217;t &#8211; I couldn&#8217;t even see a link light at the socket.</p>
<p>I thought this would be a driver issue of the laptop so I was ready to find a new driver for this network card.</p>
<p>So I opened Control Panel and System Properties. Then I clicked the Hardware tab and opened Device Manager.</p>
<p>At Device Manager I expanded Network Adapters tab and selected the ethernet controller of my laptop. I right clicked it and opened the properties window. My initial purpose was to find the driver version but I started looking at the settings.</p>
<p>So I selected the Advanced tab and eventually Speed &amp; Duplex. Wait.. why is it set to 100 Mb Full? Hummm&#8230;. let me change that to Auto. Bingo&#8230; After applying the change I got a 1.0Gbs connection&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/09/no-link-light-while-connecting-to-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows: checking file integrity with sha1 and/or md5</title>
		<link>http://www.smachado.com/2009/08/windows-checking-file-integrity-with-sha1-andor-md5/</link>
		<comments>http://www.smachado.com/2009/08/windows-checking-file-integrity-with-sha1-andor-md5/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 16:16:12 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Shell]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=112</guid>
		<description><![CDATA[Some Internet available software, normally free software, provides a checksum for file integrity testing.
What is this for? By checking that the checksum of the downloaded file matches the checksum provided on the source web site you&#8217;ll have a guarantee that the file was not modified (hacked) &#8211; unless the web site checksum was too..
So on [...]]]></description>
			<content:encoded><![CDATA[<p>Some Internet available software, normally free software, provides a checksum for file integrity testing.</p>
<p>What is this for? By checking that the checksum of the downloaded file matches the checksum provided on the source web site you&#8217;ll have a guarantee that the file was not modified (hacked) &#8211; unless the web site checksum was too..</p>
<p>So on windows how do you verify this?</p>
<p>There&#8217;s a tool (fciv.exe) provided by Microsoft(r) that can compute sha1 and md5 checksums. You can download it at <a title="http://support.microsoft.com/kb/841290" href="http://support.microsoft.com/kb/841290" target="_blank">http://support.microsoft.com/kb/841290</a>.</p>
<p>After downloading it, you can extract it to c:\windows\ to make the command widely available.</p>
<p>Next you can verify the checksum of a downloaded file, say for example the <a title="http://www.gnupg.org/download/index.en.html" href="http://www.gnupg.org/download/index.en.html" target="_blank">gnupg installation package for windows</a>. On the web site the sha1 checksum was published. Let&#8217;s verify it:</p>
<pre>C:\external\Software\gnupg&gt;fciv gnupg-w32cli-1.4.9.exe -sha1
//
// File Checksum Integrity Verifier version 2.05.
//
c2efad983dfe50e6d8007257bad2c76604be389a gnupg-w32cli-1.4.9.exe</pre>
<p>Great, it matches it so the file has it&#8217;s integrity intact.</p>
<p>To make things easier we can create the commands sha1sum and md5sum which are normally the standard command names to check sha1 and md5.</p>
<p>Let&#8217;s create 2 batch files, for sha1 let&#8217;s put the following contents and save it as c:\windows\sha1sum.bat:</p>
<pre>@echo off
fciv %1 -sha1</pre>
<p>and for md5 let&#8217;s put the following contents and save it as c:\windows\md5sum.bat:</p>
<pre>@echo off
fciv %1</pre>
<p>Now we can compute the checksums by calling these commands:</p>
<pre>C:\external\Software\gnupg&gt;sha1sum gnupg-w32cli-1.4.9.exe
//
// File Checksum Integrity Verifier version 2.05.
//
c2efad983dfe50e6d8007257bad2c76604be389a gnupg-w32cli-1.4.9.exe

C:\external\Software\gnupg&gt;md5sum gnupg-w32cli-1.4.9.exe
//
// File Checksum Integrity Verifier version 2.05.
//
d90854104edcb72149472a99a9392d4e gnupg-w32cli-1.4.9.exe</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/08/windows-checking-file-integrity-with-sha1-andor-md5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shutdown timer</title>
		<link>http://www.smachado.com/2009/08/shutdown-timer/</link>
		<comments>http://www.smachado.com/2009/08/shutdown-timer/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 01:30:12 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=110</guid>
		<description><![CDATA[Here is a quick tip on how to set your pc to shutdown completely at a defined time.
Use the command shutdown (open an command prompt: Start &#62; Run &#62; cmd):
shutdown -s -f -t 3600
The command above shuts down your computer in 1 hour closing any running application.
Look at windows help for the complete synopsis of [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick tip on how to set your pc to shutdown completely at a defined time.</p>
<p>Use the command shutdown (open an command prompt: Start &gt; Run &gt; cmd):</p>
<pre>shutdown -s -f -t 3600</pre>
<p>The command above shuts down your computer in 1 hour closing any running application.</p>
<p>Look at windows help for the complete synopsis of the command.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/08/shutdown-timer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow access to NTFS formatted external storage</title>
		<link>http://www.smachado.com/2009/04/allow-access-to-ntfs-formatted-external-storage/</link>
		<comments>http://www.smachado.com/2009/04/allow-access-to-ntfs-formatted-external-storage/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 22:49:32 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=51</guid>
		<description><![CDATA[Having your external usb hard drive or usb pen drive formatted with the NTFS file system will certainly put you into trouble. If not problems like being unable to listen to songs on your mp3 auto radio or mp3 hi-fi stereo (normally only able to read FAT32 formatted drives), you might not be able to [...]]]></description>
			<content:encoded><![CDATA[<p>Having your external usb hard drive or usb pen drive formatted with the NTFS file system will certainly put you into trouble. If not problems like being unable to listen to songs on your mp3 auto radio or mp3 hi-fi stereo (normally only able to read FAT32 formatted drives), you might not be able to create or change existing files on different computers (or under different users).</p>
<p>This problem has two solutions:</p>
<ol>
<li>Backup the data, format the drive to FAT32 and restore the data back into the drive &#8211; the only solution if you want auto-radios and hi-fi equipment to read your drive contents.</li>
<li>Make NTFS permissions less restrictive.</li>
</ol>
<p>The first one is the easier one if you have enough space to backup your data.</p>
<p>The second one is a bit more tricky to implement but I&#8217;ve found a web page that has very clean instructions on how to do it. So follow the link if you want this solution:</p>
<p><a title="http://ask.metafilter.com/38252/Can-not-delete-files-on-portable-drive" href="http://ask.metafilter.com/38252/Can-not-delete-files-on-portable-drive" target="_blank">http://ask.metafilter.com/38252/Can-not-delete-files-on-portable-drive</a></p>
<p><strong>To ensure that I have these instructions all the time, I copy/pasted here:</strong></p>
<p>What I suspect is happening is this:</p>
<p>1.  Your external drive is formatted with the NTFS file system, which supports access restrictions.</p>
<p>2. The permissions on the files in question have become set to &#8220;Read and Excecute&#8221; for Users or Everyone (probably Everyone), and to Full Control for one specific user. These settings are typical for files created inside the My Documents folder of Computer Administrator users who haven&#8217;t elected to make their files private.</p>
<p>3. The folders you&#8217;re working with have Create Files and Create Folders permissions for Everyone on themselves and their subfolders, and Full Control permissions for the dummy user CREATOR OWNER on subfolders and files. Which means that anybody can create files or folders, but only the user who created them can change or delete them. This is a fairly typical setting for the root folder of newly formatted drives.</p>
<p>You can check the permissions on any file by right-clicking the file, selecting Properties, then clicking on the Security tab. If you don&#8217;t have a Security tab on file or folder property sheets, you need to do one of two things depending on whether you&#8217;re running XP Home or Professional.</p>
<p>For XP Professional: open a Windows Explorer window, then select Tools-&gt;Folder Options-&gt;View; scroll down to the bottom and turn off Simple File Sharing.</p>
<p>For XP Home: run the &#8220;Security for folders and files&#8221; patch from <a href="http://www.rt-sw.de/en/freeware/freeware.html">this website</a>.</p>
<p>Things you should know about NTFS permissions to make sense of what&#8217;s going on:</p>
<p>1.  When you <strong>copy </strong>a file into a folder on an NTFS volume (using copy/paste or right-click-drag/drop/Copy File(s) Here), the file will <strong>inherit</strong> permissions from the folder you copy it into.</p>
<p>2.  When you <strong>move</strong> a file from one folder to another (using cut/paste or drag/drop), the file will <strong>keep</strong> its existing permissions.</p>
<p>3.  As well as a bunch of permissions, every NTFS file and folder has an <strong>owner</strong>, which can be a user or a security group. The owner has full control over the file or folder regardless of any permissions that are set on it.</p>
<p>4.  There are some users and security groups built in to Windows (Everyone, Administrator, Administrators etc) that have <strong>predefined Security ID&#8217;s</strong> which are the same on all machines. Other users and groups have SID&#8217;s derived from that of the machine they&#8217;re defined on. So if you give user Joe permission to access a file on machine A, that doesn&#8217;t necessarily mean you can plug the drive into machine B, log on as Joe and get access to the same file.</p>
<p>5.  Members of the Administrators security group have the right to <strong>take ownership</strong> of any file or folder, either for themselves or for the Administrators group as a whole.</p>
<p>For an external drive that is going to be used on several different computers, I recommend you set the NTFS permissions very loose, and rely on your physical possession of the drive for the security of its files:</p>
<p>1.  Connect the drive to any Windows XP machine on which you have a Computer Administrator logon.</p>
<p>2.  Log on as an administrator.</p>
<p>3.  Double-click My Computer.</p>
<p>4. Right-click the drive and select Properties. If the property sheet doesn&#8217;t have a Security tab, enable them as described above and then come back to this step.</p>
<p>5.  Click the Security tab.</p>
<p>6. Click the Advanced button. This should bring up the Advanced Security Settings dialog for the drive, which will have some more tabs on it.</p>
<p>7.  Click the Owner tab.</p>
<p>8. Click the line for the Administrators group, check &#8220;Replace owner on subcontainers and objects&#8221;, and click OK. If you&#8217;re asked about replacing existing permissions with ones giving you Full Control, click Yes.</p>
<p>9. The Advanced Security Properties box should eventually disappear, leaving you looking at Security tab on the original Properties sheet again. For each entry in the &#8220;Group or user names&#8221; list in turn, click on that entry and click Remove.</p>
<p>10.  Click Add. This will bring up the &#8220;Select Users, Computer or Groups&#8221; dialog.</p>
<p>11. Under &#8220;Enter the object names to select&#8221;, type Everyone and click OK. You should see that Everyone has been added to the list of users and groups.</p>
<p>11.  Click Everyone, and check Full Control.</p>
<p>12.  Click Apply.</p>
<p>13.  Click Advanced again to get the Advanced Security Settings dialog box back.</p>
<p>14.  Check &#8220;Replace permission entries on all child objects with entries shown here that apply to child objects&#8221; and click OK.</p>
<p>15.  Click OK.</p>
<p>You should now be able to read and write all the files in that folder and all its subfolders regardless of which computer you&#8217;re using or who you&#8217;re logged on as.<br />
<span class="smallcopy">posted by <a href="http://www.metafilter.com/user/20036" target="_self">flabdablet</a> at <a href="http://ask.metafilter.com/38252/Can-not-delete-files-on-portable-drive#591733" target="_self">9:09 PM</a> on May 15, 2006 [<a style="font-weight: normal;" title="1 user marked this as favorite" href="http://ask.metafilter.com/favorited/4/591733">1 favorite</a>]</span><br />
<a name="591734"></a><br />
If you want to make the permissions a little more conventional, you can repeat steps 10 and both elevens (oops) to add Full Control permissions for Administrators and SYSTEM. But since Everyone is, well, everyone, this isn&#8217;t strictly necessary.<br />
<span class="smallcopy">posted by <a href="http://www.metafilter.com/user/20036" target="_self">flabdablet</a> at <a href="http://ask.metafilter.com/38252/Can-not-delete-files-on-portable-drive#591734" target="_self">9:13 PM</a> on May 15, 2006 </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/04/allow-access-to-ntfs-formatted-external-storage/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Save images embedded on Microsoft Word documents</title>
		<link>http://www.smachado.com/2009/03/save-images-embedded-on-microsoft-word-documents/</link>
		<comments>http://www.smachado.com/2009/03/save-images-embedded-on-microsoft-word-documents/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:44:54 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=40</guid>
		<description><![CDATA[I got a query from a friend on how to save/extract images embedded on Microsoft Word documents. At first I thought that would be an easy task that I could easily find on a menu or right clicking the image. Well I was wrong.
I oppened up a document and inserted an image. Now the fastest [...]]]></description>
			<content:encoded><![CDATA[<p>I got a query from a friend on how to save/extract images embedded on Microsoft Word documents. At first I thought that would be an easy task that I could easily find on a menu or right clicking the image. Well I was wrong.</p>
<p>I oppened up a document and inserted an image. Now the fastest way I could get the image off the file was to right-click on it and select <em>copy</em> and then openning up Microsoft Paint at <em>Start &gt; Programs &gt; Acessories &gt; Paint</em> and copying the image into it using CTRL+V or <em>paste</em> option of <em>edit </em>menu.</p>
<p>Then I could save it as an image file. Problem solved.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/03/save-images-embedded-on-microsoft-word-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean up folders easily using Windows Explorer search feature</title>
		<link>http://www.smachado.com/2009/03/clean-up-folders-easily-using-windows-explorer-search-feature/</link>
		<comments>http://www.smachado.com/2009/03/clean-up-folders-easily-using-windows-explorer-search-feature/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 09:00:45 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=36</guid>
		<description><![CDATA[Let&#8217;s assume the following scenario: you have an hierarchy of 30 folders with 3 levels. On those folders you have documents, text files, zip files, pdf files and audio and picture files all mixed up.
You want for example to easily select all document files and move them to a document dedicated folder. Traversing all hierarchy [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s assume the following scenario: you have an hierarchy of 30 folders with 3 levels. On those folders you have documents, text files, zip files, pdf files and audio and picture files all mixed up.</p>
<p>You want for example to easily select all document files and move them to a document dedicated folder. Traversing all hierarchy and moving files manually is time consuming.</p>
<p>You can efficiently do this by using the search functionality on Windows Explorer.</p>
<p>Using Windows Explorer go to the parent folder of the directory structure you want to clean up. Click <em>Search</em> on your toolbar.</p>
<p>The <em>Search Companion</em> column will show up at your left: &#8220;What do you want to search for?&#8221;.</p>
<p>You can try and play with the search options but for this example let&#8217;s say you select <em>All files and folders</em>.</p>
<p>You want to search for documents so let&#8217;s enter .doc at the box <em>All or part of the file name</em> and confirm that the <em>Look in</em> drop down box has our parent folder. It&#8217;s confirmed so let&#8217;s hit the <em>Search</em> button.</p>
<p>All your document files will show up as result of your search. Now you can manipulate them as you usually do on Windows Explorer disregarding they are on different folders.</p>
<p>So we can hit CTRL+A to select them all and then drag them to a target folder making sure SHIFT is pressed while dragging (to move the files instead of copying them) &#8211; or using CTRL+C at the selected list and then CTRL+V at the target folder &#8211; or using right-click cut at the selected list and right-click paste at the target folder. Use the method you are most used to.</p>
<p>And this should be enough to move all documents stored across folders to one target folder, easily.</p>
<p>You can use the same technique to delete files with certain patterns for example. Just remember that the same operation you can do on files at the same folder you can do to any group of files across your file system in one go.</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/03/clean-up-folders-easily-using-windows-explorer-search-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP: Mounting disk drives over folders</title>
		<link>http://www.smachado.com/2009/03/windows-xp-mounting-disk-drives-over-folders/</link>
		<comments>http://www.smachado.com/2009/03/windows-xp-mounting-disk-drives-over-folders/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 09:00:10 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=33</guid>
		<description><![CDATA[Following last post on how to change a disk drive letter you can use the same instructions to mount a disk drive into a folder.
After right-clicking your disk device and selecting Change Drive Letter and Paths you can click Add&#8230; and then browse to an empty folder that will be your mount point.
So you can [...]]]></description>
			<content:encoded><![CDATA[<p>Following last post on <a href="http://www.smachado.com/2009/03/windows-xp-change-the-disk-drive-letter" target="_blank">how to change a disk drive letter </a>you can use the same instructions to mount a disk drive into a folder.</p>
<p>After right-clicking your disk device and selecting Change Drive Letter and Paths you can click Add&#8230; and then browse to an empty folder that will be your mount point.</p>
<p>So you can for example create a C:\Documents folder on your system disk and mount an external hard drive on it. Or you might create a C:\Program Files 2 directory and mount a different disk.</p>
<p>Then if you use your external disk on any other computer you can mount into the same mount point and refer to your files the same way.</p>
<p>That&#8217;s it =)</p>
<p>Have Fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/03/windows-xp-mounting-disk-drives-over-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows XP: change the disk drive letter</title>
		<link>http://www.smachado.com/2009/03/windows-xp-change-the-disk-drive-letter/</link>
		<comments>http://www.smachado.com/2009/03/windows-xp-change-the-disk-drive-letter/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 08:00:52 +0000</pubDate>
		<dc:creator>smachado</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.smachado.com/?p=30</guid>
		<description><![CDATA[Recently I had to start installing applications on a removable/external hard disk due to lack of free space on my system/internal hard drive. Installing applications on Windows means registering them with the system, having shortcuts created and so on &#8211; they get integrated into the system. This means that the system will need to find files for [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to start installing applications on a removable/external hard disk due to lack of free space on my system/internal hard drive. Installing applications on Windows means registering them with the system, having shortcuts created and so on &#8211; they get integrated into the system. This means that the system will need to find files for those applications and it will use the full path for those files. That includes the hard drive letter that Windows assigns to storage devices (hard drives, cd-roms, usb memory cards, etc).</p>
<p>Unfortunately Windows doesn&#8217;t consistently assign the same drive letter to the same device and this makes things complicated. Fortunately Windows will only mess around your device letters if you start up your computer after connecting devices that you don&#8217;t usually connect. For example I normally connect my usb 3g modem, an usb hub with a keyboard and mouse connected into it and an external disk drive &#8211; and I connect them to the same usb ports every time. This makes Windows use the same device letter consistently. But if I connect an ebook reader with a memory card on it that will add 2 storage devices to the system and make Windows change the drive letter configuration.</p>
<p>The temporary solution I found was:</p>
<ol>
<li>Open Control Panel</li>
<li>Open Administrative Tools (Windows XP Professional)</li>
<li>Open Computer Management</li>
<li>Select Disk Management under Storage</li>
<li>An applet will open. Right-click on the drive you want to modify the drive letter.</li>
<li>Select Change Drive Letter and Paths</li>
<li>Select the drive letter and click Change.</li>
<li>Select the drive letter you want to change to from the drop down list.</li>
</ol>
<p>That&#8217;s it! you made it =)</p>
<p>Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smachado.com/2009/03/windows-xp-change-the-disk-drive-letter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
