<?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>Technology &#8211; Fr. Lamansky</title>
	<atom:link href="https://lamansky.com/tech/feed/" rel="self" type="application/rss+xml" />
	<link>https://lamansky.com</link>
	<description></description>
	<lastBuildDate>Sat, 16 Nov 2019 15:19:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.3.2</generator>
	<item>
		<title>npm: Cannot read property ‘resolve’ of undefined</title>
		<link>https://lamansky.com/tech/npm-cannot-read-property-resolve-of-undefined/</link>
				<comments>https://lamansky.com/tech/npm-cannot-read-property-resolve-of-undefined/#comments</comments>
				<pubDate>Sat, 16 Nov 2019 15:19:15 +0000</pubDate>
		<dc:creator><![CDATA[Fr. Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">https://lamansky.com/?p=2043</guid>
				<description><![CDATA[When developing software for Node.js, I use the n package manager to manage and switch between Node versions. Recently, I needed to update my installed Node version (9.2.1) to something more recent. I ran $ sudo n latest to install 13.1.0. But after the upgrade, npm installations stopped working. Any use of npm i would [&#8230;]]]></description>
								<content:encoded><![CDATA[
<p>When developing software for <a href="https://nodejs.org/en/">Node.js</a>, I use the <a href="https://www.npmjs.com/package/n">n package manager</a> to manage and switch between Node versions. Recently, I needed to update my installed Node version (9.2.1) to something more recent. I ran <code>$ sudo n latest</code> to install 13.1.0. But after the upgrade, <a href="https://www.npmjs.com/package/npm">npm</a> installations stopped working. Any use of <code>npm i</code> would error with:</p>



<pre class="wp-block-code"><code>ERR! Cannot read property 'resolve' of undefined</code></pre>



<p>After extensive research, it <a href="https://github.com/tj/n/issues/508#issuecomment-423933394">turned out</a> this was the result of an incompatibility between old versions of n (&lt;2.1.12) and recent versions of node.</p>



<p>Online forums said the solution was to downgrade back to the older version of Node and be happy with that. I needed the newer Node, so this wasn&#8217;t an option. But there was a catch-22: in order to update n to a later version compatible with recent Node, I needed to use npm, which n had broken.</p>



<p>Here are the steps I tried that ended up working.</p>



<span id="more-2043"></span>



<p>First I temporarily downgraded Node back to the older version.</p>



<pre class="wp-block-code"><code>$ sudo n</code></pre>



<p>This restored npm to a working version. Then I told the older npm version to upgrade n.</p>



<pre class="wp-block-code"><code>$ sudo npm i -g n
~/npm/bin/n -> ~/npm/lib/node_modules/n/bin/n
+ n@6.1.2
updated 1 package in 2.231s</code></pre>



<p>This should have worked in theory. But when I checked n&#8217;s version, it was still the old package.</p>



<pre class="wp-block-code"><code>$ n -V
2.1.3</code></pre>



<p>Because I had seen above where n version 6.1.2 had been installed, I ran the following commands to manually replace the old n with the new n:</p>



<pre class="wp-block-code"><code>$ cd /usr/local/bin
$ sudo rm n
$ sudo ln -s ~/npm/lib/node_modules/n/bin/n n</code></pre>



<p>I confirmed that n was the correct version:</p>



<pre class="wp-block-code"><code>$ n -V
6.1.2</code></pre>



<p>Then I was able to run the new n and install the new Node latest.</p>



<pre class="wp-block-code"><code>$ sudo n latest</code></pre>



<p>Because I was working with a new n, it was able to install new Node correctly. Now npm installs packages without error. Hopefully this helps someone else.</p>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/npm-cannot-read-property-resolve-of-undefined/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
		<item>
		<title>Where&#8217;s &#8220;Scheduled Tasks&#8221; in Windows 7?</title>
		<link>https://lamansky.com/tech/scheduled-tasks-windows-7/</link>
				<comments>https://lamansky.com/tech/scheduled-tasks-windows-7/#respond</comments>
				<pubDate>Sat, 26 Nov 2011 16:02:22 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://johnlamansky.com/tech/?p=972</guid>
				<description><![CDATA[
				Windows 7 doesn't have a "Scheduled Tasks" folder like Windows XP did, but the same functionality is still there. Here's how to find it.		]]></description>
								<content:encoded><![CDATA[<p>				If you&#8217;re coming from a Windows XP background, you&#8217;re probably accustomed to using XP&#8217;s &#8220;Scheduled Tasks&#8221; folder to run programs at specified times or events. At first glance, it may appear Windows Vista and Windows 7 lack this functionality, since there is no &#8220;Scheduled Tasks&#8221; to be found. However, it&#8217;s still there, but under a different name: <strong>Task Scheduler</strong>. <span id="more-972"></span></p>
<p>To open Task Scheduler, click the Start button, type in &#8220;Task Scheduler,&#8221; and click it when it appears in the results list.</p>
<p>Although Task Scheduler provides the same functionality as Scheduled Tasks, the interface is much different.</p>
<p><img src="https://lamansky.com/wp-content/uploads/2011/06/Task-Scheduler.png" alt="" title="Task Scheduler" width="579" height="387" class="aligncenter size-full wp-image-992" srcset="https://lamansky.com/wp-content/uploads/2011/06/Task-Scheduler.png 579w, https://lamansky.com/wp-content/uploads/2011/06/Task-Scheduler-300x201.png 300w" sizes="(max-width: 579px) 100vw, 579px" /></p>
<p>To add a task, click &#8220;Create Basic Task,&#8221; which can be found in the &#8220;Actions&#8221; pane on the right or on the &#8220;Action&#8221; menu.		</p>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/scheduled-tasks-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
							</item>
		<item>
		<title>How to Remove Dates from WordPress Posts</title>
		<link>https://lamansky.com/tech/remove-wordpress-post-dates/</link>
				<comments>https://lamansky.com/tech/remove-wordpress-post-dates/#comments</comments>
				<pubDate>Wed, 01 Jun 2011 17:27:56 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://johnlamansky.com/wordpress/?p=132</guid>
				<description><![CDATA[
						]]></description>
								<content:encoded><![CDATA[<p>If your content is not time-oriented (such as when using WordPress in non-blog contexts), you may wish to remove the publication date from your posts since this information is not relevant and can give the impression that your older content is outdated.</p>
<p><span id="more-1962"></span></p>
<h2>1. The Manual Method</h2>
<p>The &#8220;proper&#8221; way to do this would be to edit your theme and remove the code that displays the post dates.</p>
<ol>
<li><a href="https://lamansky.com/tech/backup-wordpress-theme/">Backup your theme</a>, just in case</li>
<li>Go to &#8220;Appearance &gt; Editor&#8221; and repeat the following steps for each of your theme&#8217;s PHP files</li>
<li>Look for these function calls in your theme&#8217;s code: <code>the_date()</code>, <code>echo get_the_date()</code>, <code>the_modified_date()</code>, and <code>the_time()</code></li>
<li>Surround the function calls with PHP comment markers (<code>/*</code> and <code>*/</code>); here are some examples:
<pre>&lt;?php /*the_date();*/ ?&gt;
&lt;?php /*the_date('F j, Y');*/ ?&gt;
&lt;?php /*echo get_the_date();*/ ?&gt;
&lt;?php /*the_modified_date();*/ ?&gt;
&lt;?php /*the_modified_date('', 'Last modified ');*/ ?&gt;
&lt;?php /*the_time( get_option('date_format') );*/ ?&gt;</pre>
</li>
<li>You may want to remove other text surrounding the function call. For example, if your theme has this code&#8230;
<pre>&lt;div&gt;Published on &lt;?php the_time( get_option('date_format') ); ?&gt;&lt;/div&gt;</pre>
<p>&#8230;and you replace it with this&#8230;</p>
<pre>&lt;div&gt;Published on &lt;?php /*the_time( get_option('date_format') );*/ ?&gt;&lt;/div&gt;</pre>
<p>&#8230;your theme will output &#8220;Published on,&#8221; but not the date. Deleting &#8220;Published on&#8221; from your theme file will remove it from your site. Just be aware that you may have to remove text like this from your theme files to get a clean-looking result.</li>
<li>Click &#8220;Update File&#8221;</li>
</ol>
<h2>2. The Automatic Method</h2>
<p>If you&#8217;re looking for a quick fix, just go to &#8220;Appearance &gt; Editor&#8221; in your WordPress admin and add this code to your theme&#8217;s functions.php file. Put it at the top of the file, but <em>after</em> the opening <code>&lt;?php</code> line.</p>
<pre>function jl_remove_post_dates() {
	add_filter('the_date', '__return_false');
	add_filter('the_time', '__return_false');
	add_filter('the_modified_date', '__return_false');
} add_action('loop_start', 'jl_remove_post_dates');</pre>
<p>(Note: This method requires WordPress 3.0 or above)</p>
<p>Now check your site and verify that the post dates are gone. If they&#8217;re not, try replacing the code above with this more &#8220;aggressive&#8221; version:</p>
<pre>function jl_remove_post_dates() {
	add_filter('the_date', '__return_false');
	add_filter('the_time', '__return_false');
	add_filter('the_modified_date', '__return_false');
	add_filter('get_the_date', '__return_false');
	add_filter('get_the_time', '__return_false');
	add_filter('get_the_modified_date', '__return_false');
} add_action('loop_start', 'jl_remove_post_dates');</pre>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/remove-wordpress-post-dates/feed/</wfw:commentRss>
		<slash:comments>180</slash:comments>
							</item>
		<item>
		<title>How to Save a Word Doc as a PDF</title>
		<link>https://lamansky.com/tech/save-word-doc-as-pdf/</link>
				<comments>https://lamansky.com/tech/save-word-doc-as-pdf/#comments</comments>
				<pubDate>Thu, 26 May 2011 18:58:53 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.johnlamansky.com/?p=574</guid>
				<description><![CDATA[
				Need to save your document as a PDF? Just follow these step-by-step instructions for Word 2007 or 2010.		]]></description>
								<content:encoded><![CDATA[<p>				Saving a Microsoft Word document as a PDF can be a great way to ensure that your document looks exactly the same no matter who&#8217;s viewing it and to ensure that your document can be viewed by as many computer users as possible (thanks to the ubiquity of <a href="http://get.adobe.com/reader/">Adobe Reader</a>).</p>
<p>To export your Word document to PDF format, just follow the instructions for your version of Word: <span id="more-574"></span></p>
<div class="tabs">
<h2 class="word-2010 icon">Word 2010</h2>
<ol class="spaced">
<li>Click the &#8220;File&#8221; tab in the top-left corner of the window</li>
<li>Click &#8220;Save As&#8221;
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-1.png" alt="" width="160" height="279" class="alignnone size-full wp-image-696" /></li>
<li>From the &#8220;Save as type&#8221; dropdown, select &#8220;PDF&#8221;
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-2.png" alt="" width="665" height="325" class="alignnone size-full wp-image-697" srcset="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-2.png 665w, https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-2-300x147.png 300w" sizes="(max-width: 665px) 100vw, 665px" /></li>
<li>You can leave the default settings as-is or customize them as desired.
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-3.png" alt="" width="664" height="236" class="alignnone size-full wp-image-708" srcset="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-3.png 664w, https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-3-300x107.png 300w" sizes="(max-width: 664px) 100vw, 664px" /></p>
<p>You can also click the &#8220;Options&#8221; button to access advanced settings.</p>
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-4.png" alt="" width="292" height="445" class="alignnone size-full wp-image-699" srcset="https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-4.png 292w, https://lamansky.com/wp-content/uploads/2011/05/word-2010-save-as-pdf-step-4-197x300.png 197w" sizes="(max-width: 292px) 100vw, 292px" /></li>
<li>Click &#8220;Save&#8221;</li>
</ol>
<h2 class="word-2007 icon">Word 2007</h2>
<p>Before you begin, you&#8217;ll need to check whether your installation of Office 2007 supports exporting PDFs. Just follow these steps:</p>
<ol>
<li>Open Word and click the Office orb in the top-left corner of the window</li>
<li>Click the &#8220;Word Options&#8221; button in the bottom-right corner of the Office menu</li>
<li>Click the &#8220;Resources&#8221; button on the left of the Word Options window</li>
<li>Under the &#8220;About Microsoft Office Word 2007&#8221; section, look for the letters &#8220;SP&#8221; followed by a number. This indicates which service pack you have. If you see &#8220;SP2&#8221; or &#8220;SP&#8221; followed by a number greater than 2, then your installation can export PDFs. Otherwise, you&#8217;ll need to download <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=b444bf18-79ea-46c6-8a81-9db49b4ab6e5">Service Pack 2</a>. If Service Pack 2 isn&#8217;t an option for you for some reason (e.g. incompatibility with custom corporate add-ins), you can also use Microsoft&#8217;s <a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=4d951911-3e7e-4ae6-b059-a2e79ed87041">Save as PDF/XPS Add-in</a> to add PDF functionality to older versions of Office 2007.</li>
</ol>
<p>Once you&#8217;ve confirmed your Office 2007 installation can export PDFs, proceed with these instructions:</p>
<ol class="spaced">
<li>Click the Office orb in the top-left of the window</li>
<li>Point to &#8220;Save As&#8221;</li>
<li>Click &#8220;PDF or XPS&#8221;
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-1.png" alt="" width="550" height="524" class="alignnone size-full wp-image-688" srcset="https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-1.png 550w, https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-1-300x286.png 300w" sizes="(max-width: 550px) 100vw, 550px" /></li>
<li>Confirm that &#8220;PDF&#8221; is selected in the &#8220;Save as type&#8221; dropdown. If not, select it.
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-2.png" alt="" width="610" height="209" class="alignnone size-full wp-image-689" srcset="https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-2.png 610w, https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-2-300x103.png 300w" sizes="(max-width: 610px) 100vw, 610px" /></li>
<li>You can leave the default settings as-is or customize them as desired. You can also click the &#8220;Options&#8221; button to access advanced settings.
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-3.png" alt="" width="292" height="424" class="alignnone size-full wp-image-690" srcset="https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-3.png 292w, https://lamansky.com/wp-content/uploads/2011/05/word-2007-save-as-pdf-step-3-207x300.png 207w" sizes="(max-width: 292px) 100vw, 292px" /></li>
<li>Click &#8220;Publish&#8221;</li>
</ol>
</div>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/save-word-doc-as-pdf/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
							</item>
		<item>
		<title>How to Fix Missing Post Dates in Your WordPress Theme</title>
		<link>https://lamansky.com/tech/missing-post-dates/</link>
				<comments>https://lamansky.com/tech/missing-post-dates/#comments</comments>
				<pubDate>Thu, 26 May 2011 14:41:02 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://johnlamansky.com/wordpress/?p=124</guid>
				<description><![CDATA[
						]]></description>
								<content:encoded><![CDATA[<p>				<strong>The problem:</strong><br />
When you have multiple posts published on the same day, the post date only shows up for the first one when you view the posts on your site.</p>
<p><strong>The fix:</strong></p>
<ol class="spaced">
<li>Go to &#8220;Appearance > Editor&#8221; and repeat the following steps for each of your theme files</li>
<li>Look for instances of this code:
<pre>&lt;?php the_date(); ?&gt;</pre>
</li>
<li>Replace that code with this code:
<pre>&lt;?php echo get_the_date(); ?&gt;</pre>
</li>
<li>Click &#8220;Update File&#8221;</li>
</ol>
<p><strong>The explanation:</strong><br />
Most WordPress template tag functions that start with &#8220;the_&#8221; will merely output the values returned by their equivalent &#8220;get_the_&#8221; functions. However, &#8220;the_date()&#8221; is an exception to this standard because it adds functionality that&#8217;s not present in &#8220;get_the_date()&#8221;, namely, not outputting the same date more than once per page, which can be a feature or an annoyance depending on your desired functionality.		</p>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/missing-post-dates/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
							</item>
		<item>
		<title>How to Delete an Old Email Address from Outlook Autocomplete</title>
		<link>https://lamansky.com/tech/delete-old-outlook-email-address/</link>
				<comments>https://lamansky.com/tech/delete-old-outlook-email-address/#comments</comments>
				<pubDate>Sat, 21 May 2011 21:56:01 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://johnlamansky.com/tech/?p=682</guid>
				<description><![CDATA[
				If you update an Outlook contact but the old email address keeps showing up in Outlook's autofill, just follow these 4 steps.		]]></description>
								<content:encoded><![CDATA[<p>				If you update an Outlook contact but the old email address keeps showing up in Outlook&#8217;s autofill, just follow these steps:</p>
<ol>
<li>When the old email address appears in the autocomplete box, use your up/down arrow keys to highlight the address</li>
<li>Press the &#8220;Delete&#8221; key on your keyboard</li>
<li>If you haven&#8217;t done so already, finish typing the contact&#8217;s name</li>
<li>Now press Ctrl+K on your keyboard to load the new email address from your contact list</li>
</ol>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/delete-old-outlook-email-address/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
							</item>
		<item>
		<title>How to Change a Drive Letter in Windows XP/Vista/7</title>
		<link>https://lamansky.com/tech/change-drive-letter/</link>
				<comments>https://lamansky.com/tech/change-drive-letter/#comments</comments>
				<pubDate>Fri, 20 May 2011 18:57:05 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.johnlamansky.com/?p=577</guid>
				<description><![CDATA[
				Just follow these 15 steps to change the drive letter of your hard drive, flash drive, or disc drive. Works on Windows 7, Vista, and XP.		]]></description>
								<content:encoded><![CDATA[<p>				A &#8220;drive letter&#8221; is the letter that precedes paths to files on that drive. For example, C:, D:, E:, etc. Windows lets you change the drive letter of hard drives, USB flash drives, DVD drives, or other drives attached to your system if so desired. These instructions work on Windows XP, Windows Vista, and Windows 7:<span id="more-577"></span></p>
<ol class="spaced">
<li>Close out any programs that are using the drive whose letter you want to change</li>
<li>Click the Start button</li>
<li>Right-click &#8220;Computer&#8221; or &#8220;My Computer&#8221;</li>
<li>Click &#8220;Manage&#8221; from the popup menu
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-1.png" alt="" width="281" height="98" class="alignnone size-full wp-image-650" /></li>
<li>If a User Account Control dialog appears, click &#8220;Continue&#8221;</li>
<li>Click &#8220;Disk Management&#8221; under &#8220;Storage&#8221; on the left</li>
<li>In the list, find the drive whose letter you want to change and right-click on it</li>
<li>Click &#8220;Change Drive Letter and Paths&#8230;&#8221; from the popup menu
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-2.png" alt="" width="600" height="268" class="alignnone size-full wp-image-651" srcset="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-2.png 600w, https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-2-300x134.png 300w" sizes="(max-width: 600px) 100vw, 600px" /></li>
<li>Click the &#8220;Change&#8230;&#8221; button
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-3.png" alt="" width="394" height="260" class="alignnone size-full wp-image-652" srcset="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-3.png 394w, https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-3-300x198.png 300w" sizes="(max-width: 394px) 100vw, 394px" /></li>
<li>Select a new letter from the dropdown
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-4.png" alt="" width="394" height="194" class="alignnone size-full wp-image-653" srcset="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-4.png 394w, https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-4-300x148.png 300w" sizes="(max-width: 394px) 100vw, 394px" /></li>
<li>Click OK</li>
<li>A dialog will appear warning you that programs that rely on drive letters (e.g. your backup software, if you&#8217;ve told it to backup certain drives) may no longer work. Click &#8220;Yes.&#8221;
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-5.png" alt="" width="480" height="169" class="alignnone size-full wp-image-654" srcset="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-5.png 480w, https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-step-5-300x106.png 300w" sizes="(max-width: 480px) 100vw, 480px" /></li>
<li>If you didn&#8217;t complete step 1 (closing out programs using the drive), you may get this warning:
<p><img src="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-in-use-error.png" alt="The volume is currently in use. If you continue, the new drive letter will be assigned, but you can still use the old drive letter to access the volume until you restart your computer. The old drive letter will not be available for assignment until you restart." title="" width="494" height="257" class="alignnone size-full wp-image-649" srcset="https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-in-use-error.png 494w, https://lamansky.com/wp-content/uploads/2011/05/change-drive-letter-in-use-error-300x156.png 300w" sizes="(max-width: 494px) 100vw, 494px" /></p>
<p>If you know what program is using the drive, click &#8220;No,&#8221; close the program that&#8217;s using the drive, and repeat these steps. Otherwise, click &#8220;Yes&#8221; and restart your computer.</li>
<li>Close the &#8220;Computer Management&#8221; window</li>
<li>Click &quot;Start,&quot; click &quot;Computer&quot; or &quot;My Computer,&quot; and view the Computer window&#8217;s drive list to confirm that the drive shows up with the new letter </li>
</ol>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/change-drive-letter/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
							</item>
		<item>
		<title>How to Temporarily Disable Spell Check in Word</title>
		<link>https://lamansky.com/tech/disable-word-spell-check/</link>
				<comments>https://lamansky.com/tech/disable-word-spell-check/#comments</comments>
				<pubDate>Mon, 04 Apr 2011 14:00:33 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.johnlamansky.com/?p=563</guid>
				<description><![CDATA[
				Sometimes you want to disable spell check for just the particular document you're working on. Here's how to do it in Microsoft Word 2010/2007/2003.		]]></description>
								<content:encoded><![CDATA[<p>				Sometimes you&#8217;re working on a Word document and you want to disable spell check for just that one particular document. Just follow the instructions for your version of Microsoft Word: <span id="more-563"></span></p>
<h2>Word 2010</h2>
<ol class="nonspaced">
<li>Click the &#8220;File&#8221; button</li>
<li>Click &#8220;Options&#8221; on the left</li>
<li>Click &#8220;Proofing&#8221;</li>
<li>Check &#8220;Hide spelling errors in this document only&#8221; and/or &#8220;Hide grammar errors in this document only&#8221;</li>
<li>Click OK</li>
</ol>
<h2>Word 2007</h2>
<ol class="nonspaced">
<li>Click the Office orb button in the upper-left-hand corner of the screen</li>
<li>Click &#8220;Word Options&#8221; at the bottom of the menu</li>
<li>Click &#8220;Proofing&#8221;</li>
<li>Check &#8220;Hide spelling errors in this document only&#8221; and/or &#8220;Hide grammar errors in this document only&#8221;</li>
<li>Click OK</li>
</ol>
<h2>Word 2003</h2>
<ol class="nonspaced">
<li>Click the &#8220;Tools&#8221; menu</li>
<li>Click &#8220;Options&#8221;</li>
<li>Click the &#8220;Spelling &amp; Grammar&#8221; tab</li>
<li>Check &#8220;Hide spelling errors in this document&#8221; and/or &#8220;Hide grammatical errors in this document&#8221;</li>
<li>Click OK</li>
</ol>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/disable-word-spell-check/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
							</item>
		<item>
		<title>How to Fix Outlook Font Size Problem</title>
		<link>https://lamansky.com/tech/outlook-font-size-problem/</link>
				<comments>https://lamansky.com/tech/outlook-font-size-problem/#comments</comments>
				<pubDate>Tue, 29 Mar 2011 14:00:46 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.johnlamansky.com/?p=546</guid>
				<description><![CDATA[
				When reading or writing emails in Outlook, is font size 12 looking like size 6 or size 24? Thankfully it's an easy fix.		]]></description>
								<content:encoded><![CDATA[<p>Let&#8217;s say you&#8217;re writing an email in Microsoft Outlook and you have your font size set to 12, but the font looks like it&#8217;s size 6 or size 24! Or say you&#8217;re reading an email, and the font size is similarly unreadable or otherwise out-of-whack.</p>
<p>This is usually just caused by incorrect zoom settings. (When working on laptops, it&#8217;s often easy to inadvertently trigger a zoom action with the trackpad.)</p>
<p>Thankfully, it&#8217;s an easy fix. Just follow the instructions for Outlook 2003, 2007, and 2010 in my <a href="https://lamansky.com/tech/outlook-email-message-zoom/">How to Zoom Emails in Outlook</a> post to reset the zoom level to 100%.</p>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/outlook-font-size-problem/feed/</wfw:commentRss>
		<slash:comments>62</slash:comments>
							</item>
		<item>
		<title>How to Zoom Emails in Outlook</title>
		<link>https://lamansky.com/tech/outlook-email-message-zoom/</link>
				<comments>https://lamansky.com/tech/outlook-email-message-zoom/#comments</comments>
				<pubDate>Wed, 23 Mar 2011 18:53:05 +0000</pubDate>
		<dc:creator><![CDATA[John Lamansky]]></dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.johnlamansky.com/?p=548</guid>
				<description><![CDATA[
				The "zoom" command can be tricky to find in Outlook. Here's how to zoom when reading or writing email messages in Outlook 2010/2007/2003.		]]></description>
								<content:encoded><![CDATA[<p>				The &#8220;zoom&#8221; command can be tricky to find in Outlook. Just follow the instructions for your version: <span id="more-548"></span></p>
<div class="tabs">
<h2>Outlook 2010</h2>
<ol class="nonspaced">
<li>Click somewhere in the message body</li>
<li>Select the &#8220;Message&#8221; tab (if it isn&#8217;t already selected)</li>
<li>Click &#8220;Zoom&#8221;</li>
<li>Select 100% (or your desired zoom level)</li>
<li>Click OK</li>
</ol>
<h2>Outlook 2007</h2>
<h3>When reading email</h3>
<ol class="nonspaced">
<li>Click somewhere in the message body</li>
<li>Select the &#8220;Message&#8221; tab (if it isn&#8217;t already selected)</li>
<li>Click the &#8220;Other Actions&#8221; dropdown button in the &#8220;Actions&#8221; section</li>
<li>Click &#8220;Zoom&#8221;</li>
<li>Select 100% (or your desired zoom level)</li>
<li>Click OK</li>
</ol>
<h3>When writing email</h3>
<ol class="nonspaced">
<li>Click somewhere in the message body</li>
<li>Select the &#8220;Format Text&#8221; tab</li>
<li>Click &#8220;Zoom&#8221;</li>
<li>Select 100% (or your desired zoom level)</li>
<li>Click OK</li>
</ol>
<h2>Outlook 2003</h2>
<h3>When reading email</h3>
<ol class="nonspaced">
<li>Click the &#8220;View&#8221; menu</li>
<li>Point to &#8220;Text Size&#8221;</li>
<li>Click &#8220;Medium&#8221; (or your desired zoom level)</li>
</ol>
<h3>When writing email</h3>
<ol class="nonspaced">
<li>Click somewhere in the message body</li>
<li>Click the &#8220;View&#8221; menu</li>
<li>Click &#8220;Zoom&#8221;</li>
<li>Select 100% (or your desired zoom level)</li>
<li>Click OK</li>
</ol>
</div>
]]></content:encoded>
							<wfw:commentRss>https://lamansky.com/tech/outlook-email-message-zoom/feed/</wfw:commentRss>
		<slash:comments>81</slash:comments>
							</item>
	</channel>
</rss>
