<?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>Ardamis&#187; Microsoft</title>
	<atom:link href="http://www.ardamis.com/category/microsoft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ardamis.com</link>
	<description>Ardamis is a blog about web development and technology in general.</description>
	<lastBuildDate>Sun, 01 Aug 2010 02:43:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to programmatically disable Adobe Updater</title>
		<link>http://www.ardamis.com/2010/07/08/how-to-programmatically-disable-adobe-updater/</link>
		<comments>http://www.ardamis.com/2010/07/08/how-to-programmatically-disable-adobe-updater/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 05:22:30 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nonsense]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=734</guid>
		<description><![CDATA[How to disable the 'Automatically check for Adobe updates' feature by editing or replacing a settings file while avoiding the GUI.]]></description>
			<content:encoded><![CDATA[<p>By default, the Adobe Updater application that is installed along side various Adobe products like Acrobat and Photoshop is set to check for updates automatically.  Specifically, it&#8217;s set to check for updates to all installed Adobe products every week, and to download all updates and then notify you when they are ready to be installed.  In this post, I&#8217;ll explain how to disable this feature by editing a settings file while avoiding the GUI.</p>
<p><div id="attachment_736" class="wp-caption aligncenter" style="width: 532px"><a href="http://www.ardamis.com/wp-content/uploads/2010/07/Adobe-Updater-Preferences.png"><img src="http://www.ardamis.com/wp-content/uploads/2010/07/Adobe-Updater-Preferences.png" alt="Adobe Updater Preferences" title="Adobe-Updater-Preferences" width="522" height="477" class="size-full wp-image-736" /></a><p class="wp-caption-text">Adobe Updater Preferences</p></div></p>
<p>In a managed environment, an administrator may not want any software to update itself for any number of reasons.  The automatic check can be switched off in the Adobe Updater preferences, but it can be a nuisance to find and requires as many as 9 clicks.</p>
<p>Adobe Updater can be launched from within Adobe products by clicking <strong>Help | Check for Updates</strong> (note that in some products, the path is <strong>Help | Updates</strong>, but in either case, you can use the keystroke <strong>Alt+H, U</strong>).  Click <strong>Preferences</strong>, then uncheck the box next to <strong>Automatically check for Adobe updates</strong> and click <strong>OK</strong>, then close the Adobe Updater window.  You may have to click <strong>Quit</strong> in a subsequent window before the application closes.</p>
<p>For a more direct route, the Adobe Updater executable installed with Reader 9 resides at<br />
<strong>C:\Program Files (x86)\Common Files\Adobe\Updater6\AdobeUpdater.exe</strong> on a 64-bit Windows 7 machine, and at<br />
<strong>C:\Program Files\Common Files\Adobe\Updater6\AdobeUpdater.exe</strong> on a 32-bit Windows XP machine.  </p>
<p>All of the configurable settings are saved to a file named AdobeUpdaterPrefs.dat in the user profile, rather than as registry keys.  The .dat file extension suggests a binary file, but it&#8217;s actually just an XML document that can be opened in any text editor.</p>
<p>The preferences file resides at<br />
<strong>C:\Users\[USERNAME]\AppData\Local\Adobe\Updater6\AdobeUpdaterPrefs.dat</strong> on a 64-bit Windows 7 machine, and at<br />
<strong>C:\Documents and Settings\[USERNAME]\Local Settings\Application Data\Adobe\Updater6\AdobeUpdaterPrefs.dat</strong> on a 32-bit Windows XP machine.  </p>
<p>The minimum lines that need to exist for the file to be valid and for &#8220;Automatically check for Adobe updates&#8221; to be disabled are:</p>
<pre class="brush: plain;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&gt;
&lt;AdobeUpdater&gt;
&lt;AutoCheck&gt;0&lt;/AutoCheck&gt;
&lt;/AdobeUpdater&gt;
</pre>
<p>To disable the auto update check programmatically, this file can be saved as AdobeUpdaterPrefs.dat and a script used to later overwrite the file in the user profile.  A rather geekier approach would be to use a batch file to rename AdobeUpdaterPrefs.dat and then write a new file.  I prefer the latter method because it requires only a single file and because it could be easily modified to insert lines that would change other settings, such as the location of the aum.log log file or the download directory, which are located in the user profile by default.</p>
<p>A batch file to back-up and then remake the file might look like this:</p>
<pre class="brush: plain; pad-line-numbers: false;">
:: A batch file for writing a new Adobe Updater settings file &quot;AdobeUpdaterPrefs.dat&quot;
@echo off

%SystemDrive%
cd\
SETLOCAL EnableDelayedExpansion
if exist &quot;%USERPROFILE%\AppData\Local\Adobe\Updater6\AdobeUpdaterPrefs.dat&quot; goto WIN7Updater6
if exist &quot;%USERPROFILE%\AppData\Local\Adobe\Updater5\AdobeUpdaterPrefs.dat&quot; goto WIN7Updater5
if exist &quot;%USERPROFILE%\Local Settings\Application Data\Adobe\Updater6\AdobeUpdaterPrefs.dat&quot; goto XPUpdater6
if exist &quot;%USERPROFILE%\Local Settings\Application Data\Adobe\Updater5\AdobeUpdaterPrefs.dat&quot; goto XPUpdater5
goto NOTFOUND

:WIN7Updater6
cd &quot;%USERPROFILE%\AppData\Local\Adobe\Updater6&quot;
goto REWRITE

:WIN7Updater5
cd &quot;%USERPROFILE%\AppData\Local\Adobe\Updater5&quot;
goto REWRITE

:XPUpdater6
cd &quot;%USERPROFILE%\Local Settings\Application Data\Adobe\Updater6&quot;
goto REWRITE

:XPUpdater5
cd &quot;%USERPROFILE%\Local Settings\Application Data\Adobe\Updater5&quot;
goto REWRITE

:REWRITE
:: Configure Adobe Update to not check for updates
:: Delete any temp file that this script may have created in the past
if exist AdobeUpdaterPrefs.dat.temp del AdobeUpdaterPrefs.dat.temp
:: Backup the old file
rename AdobeUpdaterPrefs.dat AdobeUpdaterPrefs.dat.temp
:: Write a new minimum settings file (the other data will be filled in when Auto Updater runs)
echo ^&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?^&gt; &gt;&gt; AdobeUpdaterPrefs.txt
echo ^&lt;AdobeUpdater^&gt; &gt;&gt; AdobeUpdaterPrefs.txt
echo ^&lt;AutoCheck^&gt;0^&lt;/AutoCheck^&gt; &gt;&gt; AdobeUpdaterPrefs.txt
echo ^&lt;/AdobeUpdater^&gt; &gt;&gt; AdobeUpdaterPrefs.txt
:: Rename the new file
rename AdobeUpdaterPrefs.txt AdobeUpdaterPrefs.dat
goto :EOF

:NOTFOUND
@echo.
@echo The AdobeUpdaterPrefs.dat file was not found, no changes have been made.

@pause
</pre>
<p>Modifying the preferences file could have other benefits as well.  Imagine the time and disk space that could saved by having all of those incremental Adobe updates saved to a network location, rather than downloading them to each workstation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/07/08/how-to-programmatically-disable-adobe-updater/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily batch rename digital images with Advanced Renamer</title>
		<link>http://www.ardamis.com/2010/07/01/batch-rename-images-by-date/</link>
		<comments>http://www.ardamis.com/2010/07/01/batch-rename-images-by-date/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 12:08:29 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nonsense]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=681</guid>
		<description><![CDATA[How to batch-rename pictures based on date taken, with incrementing numbers per date.]]></description>
			<content:encoded><![CDATA[<p>I like using the Import Pictures and Videos wizard in Windows 7 when transferring pictures from my digital camera because it can create a separate folder for each date.  But it lacks the ability to rename the individual files based on date.  I want my image filenames to be <strong>YYYY.MM.DD_001.jpg</strong>, where the trailing number increments for that date.</p>
<p>To get the filename just right, I use <a href="http://www.advancedrenamer.com/">Advanced Renamer</a>, a free program for renaming multiple files or folders at once.  Advanced Renamer can read information from the image file (like the date the picture was taken).</p>
<h2>Importing the images</h2>
<p>Connect the device or memory card to your computer.  In the <strong>AutoPlay</strong> dialog box that appears, click <strong>Import pictures and videos using Windows</strong>.</p>
<p><div id="attachment_687" class="wp-caption aligncenter" style="width: 344px"><a href="http://www.ardamis.com/wp-content/uploads/2010/06/AutoPlay.png"><img src="http://www.ardamis.com/wp-content/uploads/2010/06/AutoPlay.png" alt="Windows 7 AutoPlay dialog box" title="AutoPlay" width="334" height="268" class="size-full wp-image-687" /></a><p class="wp-caption-text">Windows 7 AutoPlay dialog box</p></div></p>
<p>The default settings will create a single folder with today&#8217;s date, which is not what we want.  To change the settings that are used when importing pictures and videos, click <strong>Import settings</strong> in the <strong>Import Pictures and Videos</strong> dialog box.</p>
<p><div id="attachment_688" class="wp-caption aligncenter" style="width: 488px"><a href="http://www.ardamis.com/wp-content/uploads/2010/06/Import-Settings.png"><img src="http://www.ardamis.com/wp-content/uploads/2010/06/Import-Settings.png" alt="Windows 7 Import Settings dialog box" title="Import-Settings" width="478" height="541" class="size-full wp-image-688" /></a><p class="wp-caption-text">Windows 7 Import Settings dialog box</p></div></p>
<p>Under the <strong>Folder name</strong> menu, choose <strong>Date Taken + Tag</strong> and click <strong>OK</strong>.  The import process will restart and you&#8217;ll be prompted to enter a tag.  The tag isn&#8217;t important, so just click <strong>Import</strong>.</p>
<h2>Configuring Advanced Renamer</h2>
<p>It takes two methods to get the names the way I want them.  The first method changes the filename to use the year, month, and day information, and increment a trailing number.  The second method changes the new filename to lowercase.  If you prefer your file extensions to be in uppercase, you can skip the second method.</p>
<p><div id="attachment_691" class="wp-caption aligncenter" style="width: 456px"><a href="http://www.ardamis.com/wp-content/uploads/2010/07/Advanced-Renamer-renaming-methods.png"><img src="http://www.ardamis.com/wp-content/uploads/2010/07/Advanced-Renamer-renaming-methods.png" alt="Advanced Renamer - Renaming method list" title="Advanced-Renamer-renaming-methods" width="446" height="508" class="size-full wp-image-691" /></a><p class="wp-caption-text">Advanced Renamer - Renaming method list</p></div></p>
<p>Under <strong>Add batch method</strong>, click <strong>New Name</strong>, and either select the desired date conventions from the options, adding any separator characters you wish, or copy the code below to use <strong>YYYY.MM.DD_001.EXT</strong>.</p>
<pre class="brush: plain;">
&lt;IMG Year&gt;.&lt;IMG Month&gt;.&lt;IMG Day&gt;_&lt;Inc NrDir:001&gt;.&lt;Ext&gt;
</pre>
<p>Under <strong>Add batch method</strong>, click <strong>New Case</strong> and then choose <strong>Set lower case</strong>.  In the <strong>Apply to</strong> menu, choose <strong>Name and extension</strong>.</p>
<p>Click the <strong>Add</strong> button and browse to the parent folder.  The files should appear in the list, and the new filename will be displayed.  Check for any errors or problems with the filename, then click <strong>Start Batch</strong>.</p>
<h2>Move the files into a single directory</h2>
<p>Now that the pictures are all correctly named, I no longer need them to be in date-based folders.  It&#8217;s more convenient to have them in a single folder from which I can organize them.</p>
<p>To do this, I use a batch file that moves any files in a sub-folder into the parent folder.</p>
<pre class="brush: plain;">
Set sOriginFolder=&quot;PATH\TO\PARENT\DIRECTORY&quot;

For /f &quot;Tokens=*&quot; %%a in ('Dir %sOriginFolder% /a-d /s /b') do (
	move &quot;%%a&quot; %sOriginFolder%
)
</pre>
<p>Replace <strong>PATH\TO\PARENT\DIRECTORY</strong> with the full path to the parent folder, then run the batch file.</p>
<p>That&#8217;s it.  Now I have a single folder of images that are uniquely named according to date taken.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/07/01/batch-rename-images-by-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Flash Player</title>
		<link>http://www.ardamis.com/2010/06/23/adobe-flash-player/</link>
		<comments>http://www.ardamis.com/2010/06/23/adobe-flash-player/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 01:52:23 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=664</guid>
		<description><![CDATA[A collection of useful links for managing Flash Player across a user-base.  Direct downloads to the latest versions, a version test page, RSS feeds, and the Settings Manager.]]></description>
			<content:encoded><![CDATA[<p>Adobe Flash Player is frequently updated, which makes it difficult to keep a large user-base on the current version.  This post is a collection of useful links for managing Flash Player.</p>
<h2>Adobe Flash Player Version Information</h2>
<p>This page reports the version of Flash Player currently running on the browser, along with the latest available version.<br />
<a href="http://www.adobe.com/software/flash/about/">http://www.adobe.com/software/flash/about/</a></p>
<h2>Install the latest version of Flash Player</h2>
<p>To install the latest version of Flash Player, visit <a href="http://get.adobe.com/flashplayer/">http://get.adobe.com/flashplayer/</a>.</p>
<h2>How to download the offline Flash Player installer</h2>
<p>To download the offline Flash Player installer (*.exe) for Internet Explorer or Chrome, Firefox, Safari and Opera:</p>
<ol>
<li>Go to the download page at<br />
<a href="http://get.adobe.com/flashplayer/">http://get.adobe.com/flashplayer/</a>.</li>
<li>Click on the link:<br />
<a href="http://get.adobe.com/flashplayer/otherversions/">Different operating system or browser?</a></li>
<li>Select an operating system from the menu and click Continue.</li>
<li>Select your browser.</li>
<li>Click on the &#8220;Agree and install now&#8221; button to initiate the download.</li>
<li>Run the installer file.</li>
</ol>
<p><div id="attachment_671" class="wp-caption aligncenter" style="width: 476px"><a href="http://www.ardamis.com/wp-content/uploads/2010/06/Install-Adobe-Flash-Player1.png"><img src="http://www.ardamis.com/wp-content/uploads/2010/06/Install-Adobe-Flash-Player1.png" alt="Install Adobe Flash Player" title="Install-Adobe-Flash-Player" width="466" height="308" class="size-full wp-image-671" /></a><p class="wp-caption-text">Install Adobe Flash Player</p></div></p>
<p>The direct link to the current version of the Flash Player installer (for Windows) for Chrome, Firefox, Safari and Opera:<br />
<strong>http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe</strong></p>
<p>The direct link to the current version of the Flash Player installer (for Windows) for Internet Explorer:<br />
<strong>http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player_ax.exe</strong></p>
<h2>Flash RSS Feeds</h2>
<p>Recent documents: http://www.adobe.com/support/flashplayer/rss/recent.documents.xml<br />
Top issues: http://www.adobe.com/support/flashplayer/rss/top.issues.static.xml<br />
Developer Center: http://rss.adobe.com/developer_center_flashplayer_tutorials.rss?locale=en_US<br />
Flash Player news: http://rss.adobe.com/resources_flashplayer.rss?locale=en_US</p>
<h2>Distribute Adobe Flash Player</h2>
<blockquote><p>You may post Adobe Flash Player on company intranet sites or local networks.<br />
The Adobe Flash Player is available for for distribution and use beyond single-user installations. This includes, for example, distributing to workstations within your department or organization, or on fixed media with your software product or multimedia experience.</p></blockquote>
<p><a href="http://www.adobe.com/products/players/fpsh_distribution1.html">http://www.adobe.com/products/players/fpsh_distribution1.html</a></p>
<h2>Adobe Flash Player Settings Manager</h2>
<blockquote><p>The Settings Manager is a special control panel that runs on your local computer but is displayed within and accessed from the Adobe website. Adobe does not have access to the settings that you see in the Settings Manager or to personal information on your computer.</p>
<p>To change your settings, click the tabs to see different panels, then click the options in the Settings Manager panels that you see on the web page.</p></blockquote>
<p><a href="http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html">http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html</a></p>
<h2>Error messages in Internet Explorer</h2>
<blockquote><p>&#8220;Internet Explorer has encountered a problem with an add-on and needs to close. The following add-on was running when this problem occurred: Flash10a.ocx&#8221;</p></blockquote>
<p><a href="http://kb2.adobe.com/cps/408/kb408620.html">http://kb2.adobe.com/cps/408/kb408620.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/06/23/adobe-flash-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is it possible to get inbound links from the Xbox Forums?</title>
		<link>http://www.ardamis.com/2010/03/17/is-it-possible-to-get-inbound-links-from-the-xbox-forums/</link>
		<comments>http://www.ardamis.com/2010/03/17/is-it-possible-to-get-inbound-links-from-the-xbox-forums/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 03:23:33 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Site Dev]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=550</guid>
		<description><![CDATA[I'm trying to find out if I can create inbound links from forums.xbox.com by linking to the printer-friendly version of a thread.]]></description>
			<content:encoded><![CDATA[<p>I was having some problems with <a href="http://www.ardamis.com/2010/03/12/final-fantasy-xiii-freezing-xbox-360/">Final Fantasy XIII freezing on my Xbox 360</a>, so I posted a few times to the Xbox Forums at <a href="http://forums.xbox.com/">http://forums.xbox.com/</a>.  The posts contained a link to a blog post here on ardamis.com that explained my situation in greater detail.  I started to wonder if the forums were searcheable in Google, so I checked and found that for the most part, they weren&#8217;t.  </p>
<p>The regular forum thread URLs contain a nofollow, noindex robots meta tag and end with &#8216;ShowPost.aspx&#8217;, but if you click on the Print button, you&#8217;re taken to a URL that ends with &#8216;PrintPost.aspx&#8217;.  These printer-friendly pages have no such tag.</p>
<p>If you Google this &#8211; <strong>site:forums.xbox.com</strong> &#8211; you&#8217;ll see what I mean.  There are currently less than a thousand results in Google.</p>
<p>This post is just to test whether I can get a PrintPost.aspx page indexed in Google by linking to it, and whether I can create an inbound link from forums.xbox.com by linking to the printer-friendly version of a thread that contains a link back to a page on ardamis.com.</p>
<p>The URL to the normal thread: <a href="http://forums.xbox.com/31685195/ShowPost.aspx">http://forums.xbox.com/31685195/ShowPost.aspx</a><br />
The URL to the printer-friendly page: <a href="http://forums.xbox.com/31685195/PrintPost.aspx">http://forums.xbox.com/31685195/PrintPost.aspx</a></p>
<p>The URL to the normal thread: <a href="http://forums.xbox.com/31685953/ShowPost.aspx">http://forums.xbox.com/31685953/ShowPost.aspx</a><br />
The URL to the printer-friendly page: <a href="http://forums.xbox.com/31685953/PrintPost.aspx">http://forums.xbox.com/31685953/PrintPost.aspx</a></p>
<p>To test, as of 03.17.2010&#8230;<br />
Your search &#8211; <strong>site:forums.xbox.com ardamis</strong> &#8211; did not match any documents.</p>
<h3>Update: 03.18.2010</h3>
<p>Both PrintPost.aspx pages are now indexed.  Google Webmaster Tools still doesn&#8217;t know of any inbound links to my Final Fantasy post, although there are probably a handful by now.</p>
<h3>Update: 03.19.2010</h3>
<p>The PrintPost.aspx pages are now showing up as the first two results in Google for <strong>final fantasy xiii xbox freeze</strong>.  My post is the third result.</p>
<h3>Update: 03.31.2010</h3>
<p>My post is now the first result for <strong>final fantasy xiii xbox freeze</strong>. The PrintPost.aspx pages are now showing up as the second and third results.</p>
<h3>Update: 06.26.2010</h3>
<p>The answer is Yes, it is possible to get inbound links that show up in Google Webmaster Tools from <a href="http://forums.xbox.com/33153553/PrintPost.aspx">forums.xbox.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/03/17/is-it-possible-to-get-inbound-links-from-the-xbox-forums/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Final Fantasy XIII freezing on Xbox 360</title>
		<link>http://www.ardamis.com/2010/03/12/final-fantasy-xiii-freezing-xbox-360/</link>
		<comments>http://www.ardamis.com/2010/03/12/final-fantasy-xiii-freezing-xbox-360/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 03:30:50 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=530</guid>
		<description><![CDATA[My Xbox 360 started freezing up last night while playing Final Fantasy XIII. The problem is particular to that game, but it seems like a GPU issue.]]></description>
			<content:encoded><![CDATA[<div class="success"><strong>Report this problem to Microsoft.</strong><br />If you are experiencing freezing in Final Fantasy XIII, report it to Xbox support.</p>
<p>Toll free: (800) 4MY-XBOX or (800) 469-9269<br />
9:00 A.M. to 1:00 A.M. Eastern Time<br />
Have your console serial number ready.<br />Be in front of your console for troubleshooting.
</div>
<p>My Xbox 360 started freezing up last night after a few hours playing Final Fantasy XIII.  Either the screen would suddenly go snowy/blank with a bluish-gray tinge, or it would freeze/lock up but keep displaying the last &#8216;frame&#8217; of whatever was happening.  This happened maybe three times, and each time I had to power off at the console, because while the first segment of the ring on the console and the controller stayed lit, the console stopped responding to the controller.  There was no discernible difference in the CD ROM activity at the point of lock-up, or before or after it.</p>
<p>I figured that maybe the unit was overheating, and I was falling asleep anyway, so I called it a night.</p>
<p>Today, I turned it on, loaded my last saved game, and no more than turned my character around to face the other direction when it froze and gave me a blank screen.  </p>
<p>Because the unit had been on for less than 4 minutes, it seemed that overheating was pretty unlikely.  I started to Google around to see if this was affecting other Final Fantasy owners, but didn&#8217;t find much.  My game is freezing during Chapter 3: Branded, at Lake Bresha &#8211; The Waters Stilled.  Each time I turn toward a group of Cie&#8217;th, it freezes.  If I just sit at the spawn point and watch the fireflies for awhile, I don&#8217;t seem to have any problems.</p>
<p>Microsoft&#8217;s support page for <a href="http://support.microsoft.com/kb/907586">Screen freezes when you use your Xbox 360 console</a> has 7 steps for troubleshooting this sort of issue.  I&#8217;ve gone through each one.</p>
<p>I checked the DVD and it&#8217;s pristine &#8211; it has been handled exactly once, when I removed it from the case and carefully put it into the drive.</p>
<p>I tried another game (Lego Star Wars) and played it for about half an hour with no problems.  I&#8217;ve messed around in the Dashboard menus for about 5 minutes with no issues.</p>
<p>I haven&#8217;t been connected to Xbox Live since I bought the game.  It&#8217;s not even connected to my router.</p>
<p>I set the console upright instead of on its side, well away from anything that might be blocking airflow and still crashed.</p>
<p>I cleared the system cache, tried again and locked up.</p>
<p>I made it back to the save point, saved the game to a memory card, and then crashed.</p>
<p>I loaded the game from the new save on the memory card and crashed.</p>
<p>I removed the hard drive, loaded the game from the memory card save, and played for about 2 minutes before crashing again.</p>
<p>I loaded the game from an earlier save point and it crashed within a minute at a point <em>that I played through fine the night before</em>.</p>
<p>At this point, I&#8217;m out of ideas.  It&#8217;s gotta be the game making the Xbox do something that it can&#8217;t handle, or a defect with the disk that is not due to mistreatment.  My Xbox was actually one I got in exchange from Microsoft when I shipped back a unit suffering from the RRoD.  Its date of manufacture is 2006-12-16, so maybe that has something to do with it.</p>
<h3>Update: 13 March 2010</h3>
<p>I called Xbox support last night and asked if anyone had reported freezing in Final Fantasy, and the guy said I was the first.  He suspected the disc, and suggested I return the game or try the disc in a different Xbox.  He was pretty surprised to hear that the freezing occurred while the hard drive was disconnected.  I asked if they still did replacements like in the RRoD days, and he avoided answering, pointing out that the problem seems to be isolated to the one game.</p>
<p>In a last ditch effort, I decided to install the game to the hard drive and run it from there.  It didn&#8217;t make any difference &#8211; the lockups continued to happen within a minute or two of loading a saved game.</p>
<p>I also figured I&#8217;d get on Live and see if there were any patches or updates to download, but none are available so far.</p>
<p>I air dusted the Xbox and the power supply brick, too.</p>
<p>My feeling is that it&#8217;s a GPU issue.  The last time it froze, instead of blank/snow or a frozen frame, I got a series of blue vertical lines.</p>
<p>If the problems continue today, I&#8217;m going to:<br />
a) exchange the game and try different discs,<br />
b) put my hard drive on another unit and test, and<br />
c) bug Xbox support again.</p>
<h3>Update: 13 March 2010 (Part 2)</h3>
<p>I exchanged the game, popped in the new disc, removed the hard drive, loaded from the save on the memory unit, and it froze.  So, to rule out a corrupt save somewhere, I started a brand new game from the DVD with the hard drive still disconnected and it froze in the middle of the second battle.  It is not a media issue, a hard drive issue, or a corrupted save issue.</p>
<p>The only thing potentially odd about my setup is that I&#8217;m running at 1280 x 720 widescreen resolution output to VGA via a Microsoft Xbox 360 HD AV Cable instead of the usual component output.  I&#8217;m running Dashboard: 2.0.8955.0.</p>
<h3>Update: 14 March 2010</h3>
<p>I tried changing the resolution to 1024&#215;768 and it still froze.</p>
<p>I called Microsoft for the second time.</p>
<p>The tech support girl on this call also was unaware of any other reports of Final Fantasy XIII freezing, and sent me through the same basic troubleshooting script, with the addition of disconnecting and reconnecting the cables (something I&#8217;d already really done) and verifying that I had enough free space on my hard drive to install any updates (check, 5.9 GBs free).  She asked me to turn the console on and off, which I did.  While I didn&#8217;t realize it until after the call was over, Final Fantasy had started up and then froze at the title screen.  I pointed out that I had logged 4 hours of game time without any problems, and haven&#8217;t been able to play for more than 3 or 4 minutes at a time since the first freeze, that I was freezing in brand new, unsaved games, with and without the hard drive attached, while online and offline.  At every opportunity, she countered with &#8220;If it plays other games, then it&#8217;s not broken.&#8221;</p>
<p>All she could offer was a recommendation to first verify that the game disc was fine by playing it in another console, then send mine in for a $99.99 out-of-warranty repair.</p>
<p>She asked me when I bought the Xbox, so I got to tell her that I didn&#8217;t buy it &#8211; Microsoft sent it as a replacement to my RRoD&#8217;d unit.  This makes me think they should offer a life-time replacement guarantee on their replacements, rather than a 1-year warranty.</p>
<p>After I got off the phone, I played two hours of BioShock without any problems.</p>
<p>Basically, the situation is this:  I need to get my hands on another Xbox, prove to myself that the disc is fine, then decide whether to have my unit repaired or buy a new one.</p>
<p>Option 1 &#8211; Repair: I give them my 2006 Xenon Xbox and $99.99, wait for them to troubleshoot it and then ship me a replacement.  This will most likely be a refurbished unit of unknown age (probably an Opus).</p>
<p>Option 2 &#8211; Replace: I keep my otherwise perfectly fine Xbox, go to Target and buy a brand new Jasper Arcade for $199.99, or roll the dice with a refurb from Gamestop for $159.99.</p>
<p>Ideally, Microsoft will come around and replace the unit for free, but if it won&#8217;t, I&#8217;d rather pay the extra $100 and get a second unit, a new power supply, and another controller.</p>
<h3>Update: 15 March 2010</h3>
<p>I submitted a support ticket to Square Enix at https://support.na.square-enix.com/ after 10 unsuccessful minutes trying to find a phone number.</p>
<p>I began to wonder if the problem was with my 64 MB memory unit, so I moved my profile from the memory unit to the hard drive, removed the memory unit, and put the second disk in.  (It&#8217;s bad troubleshooting procedure to change two variables, I know.)  I started up Disc 2 and tried to open the Settings menu and it froze with the blue vertical stripes.  I guess this rules out the disc and the memory unit.</p>
<p>I air dusted the CD ROM drive again for good measure.</p>
<p>I did notice a good deal of heat buildup at the bottom of the console toward the back, right underneath the fans.  I checked to make sure both were spinning, and they were.  I see only a very little bit of dust on the fan blades and heat sink fins.  But this puppy does pump out hot air like nobody&#8217;s business.</p>
<p>I played another 2 hours of BioShock tonight, and about 1.5 hours in, the game hiccupped a few times &#8211; freezing momentarily, for maybe half-a second or so, but then resuming.  Eyebrow-raising, but not enough to convince me that the system was bad.  But at the 2 hour mark, it completely froze.  This wasn&#8217;t entirely unexpected, but I&#8217;m bummed none-the-less, because it was working fine for 2-hour (or longer) sessions of Modern Warfare 2 just a few weeks ago.  Still, why would I be able to play one game for hours before having problems, but another game freezes before I even have a chance to load a save?  And was FFXIII the straw that broke the camel&#8217;s back?</p>
<h3>Update: 16 March 2010</h3>
<p>Now I&#8217;m worried that the unit is really damaged, that even if a software patch comes out, it will be too late.  What&#8217;s more, I don&#8217;t want to test the game in my nephew&#8217;s Xbox for fear of causing similar damage to his system.</p>
<p>I spent some time Googling today.  There are lots people reporting this issue, and many of them have exchanged their discs.  <em>None of the posts that mention exchanging the game report that it resolved the issue.</em>  Of all the dozens of reports of problems, there are no known resolutions and no acknowledgement by Microsoft, Sony, or Square Enix that a problem exists.  Hilariously, a number of people have posted that their calls to various tech support numbers have all been &#8216;the first they&#8217;ve heard of this&#8217;.  Another surprisingly common observation is that while the problems were first noticed in FFXIII, both Xbox and PS3 consoles quickly began exhibiting problems in other games.  Most of the problems occur on older, out-of-warranty consoles, but some newer machines are affected.</p>
<p>On the other hand, I&#8217;ve found a few threads wherein people claim that <a href="http://boards.ign.com/ps3_general_board/b8267/190211558/">mass breakdowns of consoles occur with each large release</a>.  There&#8217;s some substance to that, I suppose.  Consoles probably wear out at a pretty consistent rate, but around the time of a release, you get lots of people playing a single game and if a console happens to fail at that point, the game is blamed.  But I don&#8217;t think that this is what&#8217;s happening here.  Too many people are noting that they&#8217;re not playing FFXIII more than say BioShock 2 or Modern Warfare 2, which were other recent big releases.  Their systems were operating normally until they started playing FFXIII, and in many cases continued to play other games normally.  Less often, but still not uncommonly, once the problems begin, they happen in other games.  I was in the former group (and may still be, with luck), and still feel that the game itself is problematic.</p>
<p>The game is also freezing on PS3s, maybe moreso than on the Xbox, and that community seems much more vocal about it.  There&#8217;s a 7-page thread at <a rel="nofollow" href="http://boardsus.playstation.com/t5/Final-Fantasy-Series/Final-Fantasy-XIII-Freezing/m-p/45391106">http://boardsus.playstation.com/t5/Final-Fantasy-Series/Final-Fantasy-XIII-Freezing/m-p/45391106</a> and a 5-page thread at <a rel="nofollow" href="http://community.eu.playstation.com/t5/Technical-Help/Final-Fantasy-XIII-problems/td-p/10379629">http://community.eu.playstation.com/t5/Technical-Help/Final-Fantasy-XIII-problems/td-p/10379629</a> of people having problems, mostly with older systems.  Here&#8217;s a <a rel="nofollow" href="http://www.gamefanboys.com/2010/03/this-week-in-games-final-fantasy-xiii.htm">video of it freezing</a>, but more exist.</p>
<p>In an attempt to document the scope of the problem, I&#8217;ve put together a list of links:</p>
<p>Final Fantasy XIII freezes/locks up<br />http://forums.xbox.com/31685195/ShowPost.aspx</p>
<p>Final Fantasy XIII | Final Fantasy XIII Freezing Up<br />http://forums.xbox.com/31660983/ShowPost.aspx</p>
<p>Issues with GPU begin after playing FFXIII<br />http://forums.xbox.com/31681685/ShowPost.aspx</p>
<p>Final Fantasy XIII Crashing Consistently<br />http://forums.xbox.com/31660975/ShowPost.aspx</p>
<p>Final Fantasy XIII | Game Freezing<br />http://forums.xbox.com/31627724/ShowPost.aspx</p>
<p>Final Fantasy XIII | Annoying Freeze Issue?<br />http://www.xbox360achievements.org/forum/showthread.php?p=2890734</p>
<p>Xbox 360 | Final Fantasy XIII | freezing issues<br />http://www.gamefaqs.com/boards/genmessage.php?board=950899&#038;topic=53897064</p>
<p>PS3 | Final Fantasy XIII | Warning !! PS3 old fat 40g version , Game freeze!<br />http://www.gamefaqs.com/boards/genmessage.php?board=928790&#038;topic=53841505</p>
<h3>Update: 17 March 2010</h3>
<p>I played another 2.5 hours of Bioshock without any issues at all.  My fear that FFXIII&#8217;s freezing did some lasting harm to the Xbox may be unfounded.</p>
<p>It&#8217;s heartening to see that the problem is getting some attention from sites like <a href="http://kotaku.com/5494326/rumor-final-fantasy-xiii-ps3-has-freezing-issues">Kotaku</a> and <a href="http://www.gamesradar.com/ps3/final-fantasy-xiii/news/potentially-major-final-fantasy-xiii-freezing-issue-emerges/a-20100316104130477028/g-20060508175846527007">GamesRadar</a>.  Many of the comments to those stories are from people who aren&#8217;t experiencing the crashing.  While only a small percentage of FFXIII owners are getting the freezing, it&#8217;s still quite a real and annoying problem.</p>
<h3>Update: 17 March 2010 (Part 2)</h3>
<p>Square Enix emailed me this:</p>
<blockquote><p>Dear Customer,</p>
<p>Regarding your request for technical support. Please find your answer below.</p>
<p>We hope this letter answers your questions.</p>
<p>We apologize for the problems you are having with your SQUARE ENIX Xbox 360 game stalling.  Here are some things I would recommend to clear up the problem:</p>
<p>*Be sure to check if there are any scratches or damage to the disc which could cause the laser to have a problem reading it.</p>
<p>* If you&#8217;re experiencing problems in some other area of the game, or it is inconsistent to WHERE the game is freezing, it might be something within the system.   You may want to try using a cleaner for your system, which can generally be purchased at any video game retailer.</p>
<p>* If you are playing with your Xbox 360 laying flat, you may want to try placing it on its side and playing with it vertically.</p>
<p>* If none of those tips work, try the game in another Xbox 360 at that point to see if it does the same thing.  Video game retailers usually have systems for demonstration purposes, and they are usually cooperative when this type of request is made.</p>
<p>*We do highly recommend to install this game on your HDD (which the new Xbox Dashboard update will allow). Doing so here in the office did assist in a smooth gameplay with no problems of frame-rate or graphic/loading problems.</p>
<p>*If you have already installed the game, please now try to uninstall the game and try playing. Another suggestion to correct this may even be to change the resolution of your display. This can be done within the Xbox 360&#8242;s display settings under &#8220;My Xbox&#8221;.</p>
<p>If the problem persists after that, then you may have a defective or damaged disc.  Contact our customer support at http://support.na.square-enix.com and if your game is still within the 90-day warranty period you can obtain a replacement.</p>
<p>We hope this information has been of assistance.</p>
<p>Thank you for contacting the SQUARE ENIX Support Center.</p></blockquote>
<p>I may pursue the replacement discs, but I really doubt that it will make a difference.  I&#8217;ll confirm that the discs are fine on another machine this weekend.  With the exception of cleaning my DVD drive with a lens cleaner, I&#8217;ve exhausted their suggestions.</p>
<p>This state of being not-quite-broken is pretty frustrating, and it reminds me of Yossarian&#8217;s jaundice in Catch-22.</p>
<blockquote><p>Yossarian was in the hospital with a pain in his liver that fell just short of being jaundice. If it became jaundice they could treat it. If it didn&#8217;t become jaundice and went away they could discharge him. But this just being short of jaundice all the time confused them.</p></blockquote>
<p>If my Xbox would just completely fail, I would replace it and be happy.  But because the problem is with just one game, I keep waiting for a logical explanation and a fix.</p>
<p>If a representative from Microsoft or Square Enix would like my system and discs for troubleshooting, just ask.</p>
<h3>Update: 20 March 2010</h3>
<p>Here are a few more threads:</p>
<p>Loading/Freezing issue<br />http://finalfantasy-xiii.net/forums/showthread.php?t=11664</p>
<p>This game and freezing up!<br />http://www.xbox360achievements.org/forum/showthread.php?p=2900889</p>
<p>Final Fantasy XIII Freeze issues<br />http://www.gamespot.com/pages/forums/show_msgs.php?topic_id=27230003</p>
<p>Per the email from Square Enix, I uninstalled the game from the hard drive.  When I tried to launch it from the disc, I got an unreadable disc error.  I removed the DVD and cleaned it, but no joy.</p>
<p>My DVD drive is shot.  When the tray closes, it makes two thumping noises and then a little whir.  The disc never spins up.  This affects all discs.</p>
<p>I rather doubt that FFXIII is to blame for this hardware failure. I acknowledge that systems wear out with use and it could be simply coincidence that my system failed after I bought FFXIII.  I&#8217;m still looking for an explanation as to why the game played normally for a few hours before freezing the first time, then failed dozens of times within a few minutes of starting up, while other games continued to play for hours.</p>
<p>Certainly, some of the PS3 owners believe that the game is burning out their lasers, but the PS3 game is on dual-layer Blu-ray while the Xbox game is on standard DVD, so it doesn&#8217;t seem likely to me that the Xbox DVD drive is working harder to play this game than any other.</p>
<p>I tested the Disc 1 and my most recent save on a different console and everything played perfectly.</p>
<p>I&#8217;m left to wonder how much longer my system would have kept going if I hadn&#8217;t bought FFXIII.  Would it have still failed on the next game purchase?</p>
<p>In the next few weeks, I&#8217;m going to buy an Arcade, but my lasting impression of this is that FFXIII is going to end up costing me over $260.</p>
<h3>Update: 1 April 2010</h3>
<p>I bought an Arcade back on March 21st, and it&#8217;s been playing FFXIII from the hard drive without any problems since.  It seems that the brief flurry of attention given to the problems associated with FFXIII has died down, too.</p>
<p>The choice of an Arcade instead of something with a HD seems pretty savvy in light of the news that <a href="http://majornelson.com/archive/2010/03/26/USB-Memory-Support-for-the-Xbox-360-coming-April-6th.aspx">USB memory support for the Xbox 360 is coming on April 6th</a>.  So I&#8217;ve gone ahead and ordered a <a href="http://www.buy.com/prod/sandisk-cruzer-micro-u3-16gb-usb-2-0-flash-drive-white/q/listingid/41490141/loc/101/210958951.html">16 GB stick</a> that should look pretty slick.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/03/12/final-fantasy-xiii-freezing-xbox-360/feed/</wfw:commentRss>
		<slash:comments>86</slash:comments>
		</item>
		<item>
		<title>Anti-virus software recommendations</title>
		<link>http://www.ardamis.com/2010/03/08/anti-virus-software-recommendations/</link>
		<comments>http://www.ardamis.com/2010/03/08/anti-virus-software-recommendations/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 12:59:28 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=502</guid>
		<description><![CDATA[I recommend Microsoft Security Essentials for real-time protection and SUPERAntiSpyware Portable Scanner for periodic scans and second opinions.]]></description>
			<content:encoded><![CDATA[<p>As an IT guy in a good-sized law firm, I&#8217;m sometimes asked to make recommendations for anti-virus software. </p>
<p>For real-time protection that is always running on your computer, I like <a href="http://www.microsoft.com/security_essentials/default.aspx">Microsoft Security Essentials</a>.  </p>
<blockquote><p>Microsoft Security Essentials provides real-time protection for your home PC that helps guard against viruses, spyware, and other malicious software.<br />
<a href="http://www.microsoft.com/security_essentials/default.aspx">http://www.microsoft.com/security_essentials/default.aspx</a></p></blockquote>
<p>If you don&#8217;t want to install software that runs all the time, but just want to run a scan now and then, I&#8217;d suggest <a href="http://onecare.live.com/site/en-us/default.htm">Windows Live OneCare</a> safety scanner.  </p>
<blockquote><p>Windows Live OneCare safety scanner is a free service designed to help ensure the health of your PC.<br />
<a href="http://onecare.live.com/site/en-us/default.htm">http://onecare.live.com/site/en-us/default.htm</a></p></blockquote>
<p>If you don&#8217;t trust Microsoft, <a href="http://www.superantispyware.com/">SUPERAntispyware</a> has a terrible name but a good track record.</p>
<blockquote><p>The SUPERAntiSpyware FREE Edition offers real-time blocking of threats.<br />
<a href="http://www.superantispyware.com/">http://www.superantispyware.com/</a></p></blockquote>
<p>The <a href="http://www.superantispyware.com/portablescanner.html">SUPERAntiSpyware Portable Scanner</a> can be run from a USB flash drive or CD without installlation.</p>
<blockquote><p>The SUPERAntiSpyware Portable Scanner does not install anything on your Start Menu or Program Files and does not need to be uninstalled.  Just download it and run it whenever you want.<br />
<a href="http://www.superantispyware.com/portablescanner.html">http://www.superantispyware.com/portablescanner.html</a></p></blockquote>
<p>Personally, I run Microsoft Security Essentials, and then do supplemental scans with the SUPERAntiSpyware Portable Scanner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/03/08/anti-virus-software-recommendations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Word 2007 add-in issues with a registry merge</title>
		<link>http://www.ardamis.com/2010/02/26/fixing-word-2007-add-in-issues/</link>
		<comments>http://www.ardamis.com/2010/02/26/fixing-word-2007-add-in-issues/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 19:48:20 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nonsense]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=497</guid>
		<description><![CDATA[How to troubleshoot Word 2007 add-in issues and quickly restore functionality via a registry merge file.]]></description>
			<content:encoded><![CDATA[<p>Many of the problems with Word 2007 are due to Word&#8217;s handling of add-ins.  Add-ins are often used to add tabs and groups to the ribbon.  As Word opens, it attempts to load each add-in.  If something unexpected happens while an add-in is being loaded, Word will react by disabling it.  Depending on the severity of the problem, the add-in can be either &#8216;soft-disabled&#8217; or &#8216;hard-disabled&#8217;.</p>
<p>In this post, I&#8217;ll explain how to programmatically fix problems caused when Word disables add-ins.  I don&#8217;t attempt to determine why Word isn&#8217;t able to successfully load an add-in in the first place. However, I&#8217;ve watched Word fail to properly start up and blame it on an add-in that has worked without issue for weeks on end.  What&#8217;s more, after re-loading the add-in, Word and the add-in will work fine for weeks more.  So, it may not be a particular add-in is malfunctioning, but that Word&#8217;s handling of add-ins generally is flaky.</p>
<p>Microsoft explains the differences between Hard Disabled vs Soft Disabled in a MSDN article at: <a href="http://msdn.microsoft.com/en-us/library/ms268871(VS.80).aspx">http://msdn.microsoft.com/en-us/library/ms268871(VS.80).aspx</a>, but I&#8217;ll paraphrase here.</p>
<h2>Hard-Disabled Add-ins</h2>
<p>Hard-disabling occurs when the add-in causes the application (Word) to close unexpectedly.  The problem was so serious that Word crashed.</p>
<p>If an add-in has been &#8216;hard-disabled&#8217; by Word 2007, it will appear in the Disabled Application Add-ins list.  To see which add-ins have been hard-disabled, click on the Office Button -&gt; Word Options -&gt; Add-Ins, and scroll down to &#8220;Disabled Application Add-ins&#8221;.  </p>
<p>To manually restore a hard-disabled add-in, first enable the add-in by selecting &#8220;Disabled Items&#8221; in the Manage menu, clicking Go, selecting the add-in to re-enable, and clicking the Enable button.  Then load it by selecting &#8220;COM Add-Ins&#8221; in the Manage menu, clicking Go, and placing a check in the box next to the Add-In.</p>
<p>Each hard-disable add-in will have an entry in the DisabledItems registry key at:</p>
<p>HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Word\Resiliency\DisabledItems </p>
<p>The entry name is some sort of hash/random binary value, rather than the name of the add-in.  You can look at the hex of each and identify the specific add-in, but programatically re-enabling them is most easily done by deleting the entire Resiliency key.  This makes it an &#8216;all or nothing&#8217; situation.</p>
<blockquote><p>Disabling adds a binary value for each addin with a name that&#8217;s randomly generated. The Resiliency key exists if there is at least one disabled item, but if you re-enable the addin then the Resiliency key and DisabledItems subkey are both deleted. So the presence of the Resiliency key serves as a general test for the existence of disabled items. You can re-enable the addin by deleting the specific binary reg value, or by removing the whole key.<br />
<a href="http://help.lockergnome.com/office/Outlook-constantly-disabled--ftopict876175.html">http://help.lockergnome.com/office/Outlook-constantly-disabled&#8211;ftopict876175.html</a></p></blockquote>
<h2>Soft-Disabled Add-ins</h2>
<p>Soft-disabling occurs when an add-in throws an unhandled exception, but the application (Word) does not unexpectedly close.</p>
<p>If an add-in has been &#8216;soft-disabled&#8217; by Word 2007, it will NOT appear in the Disabled Application Add-ins list.  It can be enabled by selecting &#8220;COM Add-Ins&#8221; in the Manage menu, clicking Go, and placing a check in the box next to the Add-In.</p>
<p>When you re-enable a soft-disabled add-in, Word immediately attempts to load the add-in. If the problem that initially caused Word to soft-disable the add-in has not been fixed, it will soft-disable the add-in again, and the box will not stay checked.</p>
<p>When an add-in has been soft-disabled, the LoadBehavior value in the registry will be changed.  It seems that this value can exist in either of two locations:</p>
<p>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Word\Addins\<addin-name><br />
HKEY_CURRENT_USER\Software\Microsoft\Office\Word\Addins\<addin-name></p>
<p>A LoadBehavior of 2 = unloaded (this corresponds to an unchecked box)<br />
A LoadBehavior of 3 = loaded (this corresponds to a checked box)</p>
<p>Here&#8217;s more information from Microsoft on the various <a href="http://msdn.microsoft.com/en-us/library/bb386106.aspx#LoadBehavior">LoadBehavior registry entries</a>.</p>
<h2>Restoring disabled add-ins programmatically</h2>
<p>Hard-disabled add-ins can be promoted to simply soft-disabled status, by creating and running the following registry merge file to delete the Resiliency key:</p>
<pre class="brush: plain;">Windows Registry Editor Version 5.00

[-HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Word\Resiliency]
</pre>
<p>By way of example, the key to load the Acrobat PDFMaker Office COM Addin installed with Acrobat 8 Standard would look like:</p>
<pre class="brush: plain;">Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\Word\Addins\PDFMaker.OfficeAddin]
&quot;LoadBehavior&quot;=dword:00000003
</pre>
<p>By enabling the add-ins you wish to always load through the Word GUI, exporting the <code>Word\Addins</code> registry keys to capture the correct LoadBehavior, and combining those keys with the instruction to delete the Resiliency key, you&#8217;ll be able to fix all of your add-in problems and restore Word to a working state with a single click.</p>
<h2>A macro to display a message box with all currently loaded COM add-ins</h2>
<p>You can use the following macro to display a message box with all currently loaded COM add-ins.</p>
<pre class="brush: plain;">
Sub ShowAddins()
'
' ShowAddins Macro
' Display a message box with all currently loaded COM add-ins
'
   Dim MyAddin As COMAddIn
   Dim i As Integer, msg As String

   For Each MyAddin In Application.COMAddIns
      msg = msg &amp; MyAddin.Description &amp; &quot; - &quot; &amp; MyAddin.ProgID &amp; vbCrLf
   Next

   MsgBox msg

End Sub
</pre>
<p>Source: <a href="http://support.microsoft.com/default.aspx?scid=kb;en;307479">Some COM add-ins are not listed in the COM Add-Ins dialog box in Word</a></p>
<h2>Forcing add-ins to be disabled by Word</h2>
<p>You can cause add-ins to be disabled by forcibly ending the winword.exe process as Word opens.  It might require crashing Word a few times, but eventually you&#8217;ll get an error:</p>
<blockquote><p>Microsoft Office Word<br />
Word experienced a serious problem with the &#8216;[add-in name]&#8216; add-in. If you have seen this message multiple times, you should disable this add-in and check to see if an update is available.<br />
Do you want to disable this add-in?<br />
[Yes] [No]</p></blockquote>
<p>If you click Yes, the add-in will be hard-disabled and an entry will be created in </p>
<p>HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Word\Resiliency\DisabledItems </p>
<p>I&#8217;ve used this method on a number of occasions to test whether my registry file is repairing Word as expected.</p>
<p>An easy way to crash Word is to create a batch file that contains the line <strong>TASKKILL /F /IM WINWORD.EXE</strong> and run it as Word starts up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/02/26/fixing-word-2007-add-in-issues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to create a bootable USB drive that can install any version of Windows 7</title>
		<link>http://www.ardamis.com/2010/02/13/bootable-windows-7-usb-drive/</link>
		<comments>http://www.ardamis.com/2010/02/13/bootable-windows-7-usb-drive/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 04:40:49 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Thriftiness]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[downloads]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=466</guid>
		<description><![CDATA[A guide to creating a bootable USB drive that can be used to install any version of Windows 7, and a neat trick for extending the 30-day trial to 120 days.]]></description>
			<content:encoded><![CDATA[<p>This article explains how to obtain leaked, legitimate ISOs of Windows 7 (x86 and x64), and create a bootable USB drive that can install any version (though only Home Premium through Ultimate are recommended).  It wraps up with a neat trick to extend the 30-day pre-activation &#8216;evaluation period&#8217; to 120 days.  This article assumes that you intend to purchase your software eventually.  It does not tell you how to obtain a product activation key or circumvent activation.</p>
<h2>Step 1: Get the RTM Windows 7 release</h2>
<p>Windows 7 RTM is build version 6.1.7600.16385.  This version was released to Microsoft TechNet and MSDN subscribers in the summer of 2009 and quickly made its way onto BitTorrent.</p>
<h3>64-bit (x64) Windows 7 Ultimate RTM English Retail DVD ISO Image</h3>
<p><a href="http://torrents.thepiratebay.org/5021075/7600.16385.090713-1255_x64fre_client_en-us_Retail_Ultimate-GRMCU.5021075.TPB.torrent" rel="nofollow">http://torrents.thepiratebay.org/5021075/7600.16385.090713-1255_x64fre_client_en-us_Retail_Ultimate-GRMCU.5021075.TPB.torrent</a></p>
<p>File Name: 7600.16385.090713-1255_x64fre_client_en-us_Retail_Ultimate-GRMCULXFRER_EN_DVD.iso<br />
Size: 3224686592 bytes<br />
CRC: 1F1257CA<br />
MD5: F43D22E4FB07BF617D573ACD8785C028<br />
SHA-1: 326327CC2FF9F05379F5058C41BE6BC5E004BAA7</p>
<h3>32-bit (x86) Windows 7 Ultimate RTM English Retail DVD ISO Image</h3>
<p><a href="http://torrents.thepiratebay.org/5021073/7600.16385.090713-1255_x86fre_client_en-us_Retail_Ultimate-GRMCU.5021073.TPB.torrent" rel="nofollow">http://torrents.thepiratebay.org/5021073/7600.16385.090713-1255_x86fre_client_en-us_Retail_Ultimate-GRMCU.5021073.TPB.torrent</a></p>
<p>File Name: 7600.16385.090713-1255_x86fre_client_en-us_Retail_Ultimate-GRMCULFRER_EN_DVD.iso<br />
Size: 2501894144 bytes<br />
CRC: C1C20F76<br />
MD5: D0B8B407E8A3D4B75EE9C10147266B89<br />
SHA-1: 5395DC4B38F7BDB1E005FF414DEEDFDB16DBF610</p>
<p>Below are the <a href="http://technet.microsoft.com/en-us/subscriptions/downloads/default.aspx?pv=36:350">official SHA1 hashes of these releases</a> copied and pasted from technet.microsoft.com.  I&#8217;ve checked them against the actual files from the torrents and they match.</p>
<p>64-bit Windows 7 Ultimate<br />
File Name: en_windows_7_ultimate_x64_dvd_x15-65922.iso<br />
Date Published (UTC): 8/6/2009 9:59:56 AM Last Updated (UTC): 8/24/2009 8:59:33 AM<br />
SHA1: 326327CC2FF9F05379F5058C41BE6BC5E004BAA7 ISO/CRC: 1F1257CA</p>
<p>32-bit Windows 7 Ultimate<br />
File Name: en_windows_7_ultimate_x86_dvd_x15-65921.iso<br />
Date Published (UTC): 8/6/2009 9:59:56 AM Last Updated (UTC): 8/24/2009 8:59:33 AM<br />
SHA1: 5395DC4B38F7BDB1E005FF414DEEDFDB16DBF610 ISO/CRC: C1C20F76</p>
<p>More <a href="http://www.mydigitallife.info/2009/07/25/download-32-bit-64-bit-windows-7-rtm-build-7600-16385-original-untouched-msdntechnet-leaked-retail-dvd-iso/">links to torrents of build version 6.1.7600.16385</a> can be found at My Digital Life.</p>
<p>As a general rule, don&#8217;t download just any torrent that you come across, and do use a hash calculator (like <a href="http://slavasoft.com/hashcalc/index.htm">HashCalc</a>) to verify that the hash of the file you&#8217;ve downloaded matches that posted by a trusted source.  Download the file, calculate the hash, copy it, find a trustworthy web site that displays the hash, and then do a Find on that page for the hash you&#8217;ve copied.  If the hash you calculated matches the trusted one, you can trust the file is legit.</p>
<h2>Step 2: Prepare the USB drive</h2>
<p>You&#8217;ll need a 4 GB flash drive to hold the installation files.  Microsoft offers a neat little program that will extract the ISO to a USB drive and make it bootable.  It can also burn the ISO to a DVD.  Download the <a href="http://store.microsoft.com/Help/ISO-Tool">Windows 7 USB/DVD Download Tool</a>.</p>
<p>If you&#8217;re currently using a 32-bit version of Windows and want to create a bootable USB drive containing the 64-bit (x64) version of Windows 7, you&#8217;ll need to obtain the bootsect.exe file from the 32-bit (x86) version of Windows 7.  </p>
<p>If you want to get this file yourself, first download the 32-bit ISO.  You can use any number of applications to open the ISO, but I recommend <a href="http://www.7-zip.org/">7-Zip</a> because it&#8217;s a great free alternative to WinZip.  Open the ISO and then copy the /boot/bootsect.exe file into the same folder as the Windows7-USB-DVD-Download-Tool.exe (e.g. %USERNAME%\AppData\Local\Apps\Windows 7 USB DVD Download Tool).</p>
<p>If that&#8217;s too much work, you can <a href="http://www.google.com/search?q=32-Bit+Windows+7+Bootsect.exe">Google 32-Bit Windows 7 Bootsect.exe</a> and take your chances.</p>
<p>Run the tool (%USERNAME%\AppData\Local\Apps\Windows 7 USB DVD Download Tool\Windows7-USB-DVD-Download-Tool.exe) and follow the prompts.  After Windows 7 has been loaded on the USB drive, you will be able to boot from it and install Windows 7 Ultimate.  (You may have to change the boot order in the BIOS to boot from USB Storage Device.)</p>
<h2>Step 3: Configure the installer</h2>
<p>What if you want to install something other than Ultimate?</p>
<p>Both the 32-bit and 64-bit ISOs contain all the different versions of Windows.  The version you actually install is determined by a tiny text file named <em>ei.cfg</em> in the /sources/ directory of the install media.  If you want to install a different version of Windows, you just need to browse the USB drive and open the /sources/ directory.  Open the ei.cfg file in Notepad and change the EditionID to whatever version you wish to install.  The contents of the file will look like this:</p>
<pre>
[EditionID]
Ultimate
[Channel]
Retail
[VL]
0
</pre>
<p>The options for the EditionID are:</p>
<p>Starter<br />
HomeBasic<br />
HomePremium<br />
Professional<br />
Ultimate</p>
<p>In the alternative, if you delete ei.cfg, you&#8217;ll be asked to choose which version of Windows to install during the installation process, which is probably much more useful.</p>
<p>For more information and links to some software that will modify the ISO for you, see <a href="http://www.mydigitallife.info/2009/07/23/how-to-select-any-edition-or-version-sku-of-windows-7-to-install-from-single-edition-dvd-disc-media-or-iso/">How to Select Any Edition or Version (SKU) of Windows 7 to Install From Single Edition DVD Disc Media or ISO</a>.</p>
<p>I would strongly recommend installing the version that you intend to purchase, as you cannot enter a Home Premium product activation key on a system running Ultimate.  You&#8217;d have to do a clean install of the version that matches the key you bought.</p>
<h2>Step 4: Extend your pre-activation trial for 120 days</h2>
<p>Microsoft allows anyone to install and use any version of Windows 7 for 30 days without having to enter a product activation key.  This 30-day trial period can be extended three times for a total of 120 days before the installation must be activated to continue functioning.  This extension is done using a Microsoft utility called the Software License Manager (slmgr) that ships with Windows. </p>
<p>If you haven&#8217;t entered a product activation key, you can click Start, then right-click Computer and choose Properties to see how many days are left before activation is required.  When that number approaches 0, click Start | All Programs | Accessories. Right-click Command Prompt and choose Run As Administrator. Enter your administrator password, if asked.</p>
<p>Type the following command and press Enter:</p>
<p><strong>slmgr -rearm</strong></p>
<p>Be sure to include the space after slmgr and the hyphen in front of rearm.</p>
<p>Restart Windows 7.</p>
<h2>In Summary</h2>
<p>The last days of Windows 7 RC are approaching, and I&#8217;m probably going to end up buying Home Premium.  Professional would be my first choice, but it&#8217;s probably not really necessary.  However, after using Ultimate for so long, I want to know that I&#8217;ll be able to get by with a reduced feature set, so I definitely want to test-drive Professional and then Home Premium before I buy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2010/02/13/bootable-windows-7-usb-drive/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fixed: No new pictures or videos were found on this device</title>
		<link>http://www.ardamis.com/2009/12/09/fixed-no-new-pictures-or-videos-were-found-on-this-device/</link>
		<comments>http://www.ardamis.com/2009/12/09/fixed-no-new-pictures-or-videos-were-found-on-this-device/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 06:03:26 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nonsense]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=439</guid>
		<description><![CDATA[A fix for that irritating 'No new pictures or videos were found on this device' message in Windows when importing images a second time.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using Windows 7, trying to transfer photos from my digital camera to my laptop for the second time, but the Import Pictures and Videos wizard won&#8217;t let me.  After I connect my camera and choose &#8216;Import pictures and videos&#8217; from the AutoPlay dialog box, I get a message from the Import Pictures and Videos wizard that &#8216;No new pictures or videos were found on this device&#8217;.</p>
<p>Although it would have been simple to just treat the camera as a mass storage device and browse the files in Explorer, I wanted to use the wizard to create a folder for each date.  Why can&#8217;t we have a button to import the same images again and again, as many times as we want?</p>
<p>Disconnecting and reconnecting the device didn&#8217;t help, and deleting the files and containing folder from my computer didn&#8217;t do it, either.  Obviously, something was keeping track of which images were being transfered. So I started digging around and found this interesting file in my user folder:</p>
<p><strong>C:\Users\[username]\AppData\Local\Microsoft\Photo Acquisition\PreviouslyAcquired.db</strong></p>
<p>I renamed it to PreviouslyAcquired.db.old, then reconnected the camera and went through the wizard and lo, I was able to import the pictures a second time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2009/12/09/fixed-no-new-pictures-or-videos-were-found-on-this-device/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Citrix XenApp Web Plugins</title>
		<link>http://www.ardamis.com/2009/11/26/citrix-xenapp-web-plugins/</link>
		<comments>http://www.ardamis.com/2009/11/26/citrix-xenapp-web-plugins/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 06:25:41 +0000</pubDate>
		<dc:creator>ardamis</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Nonsense]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[downloads]]></category>

		<guid isPermaLink="false">http://www.ardamis.com/?p=410</guid>
		<description><![CDATA[I thought it would be handy to have some direct downloads to the Citrix XenApp web client software for Windows, particularly as the Citrix people can&#8217;t settle on a name for their product and the web site changes every 15 minutes. Citrix Online Plug-in &#8211; Version 11.2 Release Date: 9/29/2009 Windows 7, XP, Vista, 2003, [...]]]></description>
			<content:encoded><![CDATA[<p>I thought it would be handy to have some direct downloads to the Citrix XenApp web client software for Windows, particularly as the Citrix people can&#8217;t settle on a name for their product and the web site changes every 15 minutes.</p>
<p><strong><a href="http://www.citrix.com/English/ss/downloads/details.asp?downloadId=1858087&#038;productId=186&#038;c1=sot2755">Citrix Online Plug-in &#8211; Version 11.2</a></strong><br />
Release Date: 9/29/2009<br />
Windows 7, XP, Vista, 2003, &#038; 2008<br />
11 MB<br />
Download <a href="http://www.ardamis.com/downloads/CitrixOnlinePluginWeb11.2.exe">CitrixOnlinePluginWeb11.2.exe</a> from ardamis.com</p>
<p><strong><a href="http://www.citrix.com/english/ss/downloads/details.asp?downloadid=1681207&#038;productID=186&#038;c1=sot2755">XenApp Plugin (Client) &#8211; Version 11.0.150</a></strong><br />
Release Date: 11/11/2009<br />
Windows 2000, XP, Vista, 2003, &#038; 2008<br />
4.9 MB<br />
Download <a href="http://www.ardamis.com/downloads/XenAppWebPlugin11.0.150.exe">XenAppWebPlugin11.0.150.exe</a> from ardamis.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ardamis.com/2009/11/26/citrix-xenapp-web-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
