<?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>Under The Desk</title>
	<atom:link href="http://nefaria.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nefaria.com</link>
	<description>Dispatches from the realm of I.T.</description>
	<lastBuildDate>Fri, 31 May 2013 21:46:31 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Configure Syncrify Client (x64) on Linux</title>
		<link>http://nefaria.com/2013/05/configure-syncrify-client-x64-on-linux/</link>
		<comments>http://nefaria.com/2013/05/configure-syncrify-client-x64-on-linux/#comments</comments>
		<pubDate>Wed, 15 May 2013 19:55:34 +0000</pubDate>
		<dc:creator>musashi</dc:creator>
				<category><![CDATA[I.T.]]></category>
		<category><![CDATA[Syncrify]]></category>

		<guid isPermaLink="false">http://nefaria.com/?p=1368</guid>
		<description><![CDATA[I&#8217;ve already written up a how-to on the server portion of the Syncrify suite, so here&#8217;s the follow-up to that post regarding the client portion. Before you get started, please note that these instructions assume that the user is ssh&#8217;d to the server. You will need X forwarding capability&#8230; if you ssh to the server [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve already written up a <a title="Configuring Syncrify Server (x64) on Linux" href="http://nefaria.com/2013/03/configuring-syncrify-x64-on-linux/">how-to on the server portion of the Syncrify suite</a>, so here&#8217;s the follow-up to that post regarding the client portion.</p>
<p>Before you get started, please note that these instructions assume that the user is ssh&#8217;d to the server. You will need X forwarding capability&#8230; if you ssh to the server using the following command, you&#8217;ll do just fine:</p>
<pre class="brush: plain; title: ; notranslate">
ssh -XC root@server
</pre>
<p><span style="text-decoration: underline;"><strong>Step #1: Configure Java</strong></span></p>
<p>Follow the instructions for <a title="Configuring Syncrify Server (x64) on Linux" href="http://nefaria.com/2013/03/configuring-syncrify-x64-on-linux/">Step #1: Configure Java</a>, on the server how-to post.</p>
<p><span style="text-decoration: underline;"><strong>Step #2: Download the Syncrify client for Linux</strong></span></p>
<pre class="brush: plain; title: ; notranslate">wget http://www.synametrics.com/files/Syncrify/SyncrifyClientJava.zip</pre>
<p><span style="text-decoration: underline;"><strong>Step #3: Unzip the archive and &#8220;install&#8221; the software package</strong></span></p>
<pre class="brush: plain; title: ; notranslate">
unzip SyncrifyClientJava.zip
mkdir /opt/Syncrify
mkdir /var/log/syncrify
mv SyncrifyClient.jar /opt/Syncrify/
mv SyncrifyClient.sh /opt/Syncrify/
</pre>
<p>If your server does not have  Xorg installed, you&#8217;ll need to install it:</p>
<pre class="brush: plain; title: ; notranslate">
apt-get install xorg
</pre>
<p>This will not make your server have a gui&#8230; you just need Xorg&#8217;s libraries in order to run the Syncrify client interface. I&#8217;m assuming you&#8217;re logged into the server via ssh, from a machine that <em>has</em> a gui (X server + desktop manager), and you&#8217;ve enabled X forwarding by using the <em>-X</em> command line argument. Any X session data will be forwarded through your ssh connection to your local X server. If your server has a gui (X server + desktop manager) then you can safely ignore this.</p>
<p><span style="text-decoration: underline;"><strong>Step #4: Configure Syncrify scripts &#038; crontab</strong></span></p>
<p>Create a new file: <em>/opt/Syncrify/Backup.sh</em> and insert the following lines:</p>
<pre class="brush: plain; title: ; notranslate">
#!/bin/sh
java -jar /opt/Syncrify/SyncrifyClient.jar -console my_backup_profile.syncrify
</pre>
<p>Where <em>my_backup_profile</em> is the name of the profile you&#8217;ll create in step #5. Save and exit this file, then create a new file: <em>/etc/cron.d/syncrify</em> and insert the following lines:</p>
<pre class="brush: plain; title: ; notranslate">
#Run syncrify backup every Sunday, Tuesday, Thursday, and Saturday @ 2100hrs
00      21      *       *       0,2,4,6         root    /opt/Syncrify/Backup.sh &gt;&gt; /var/log/syncrify/syncrify.log
</pre>
<p>Save and exit.</p>
<p>Change permissions:</p>
<pre class="brush: plain; title: ; notranslate">
chmod 0755 /opt/Syncrify/Backup.sh
chmod 0755 /opt/Syncrify/SyncrifyClient.sh
chmod 0644 /etc/cron.d/syncrify
chown root.root /etc/cron.d/syncrify
chown -R root.root /opt/Syncrify
</pre>
<p><span style="text-decoration: underline;"><strong>Step #5: Configure a backup profile</strong></span></p>
<p>Start the Syncrify Client:</p>
<pre class="brush: plain; title: ; notranslate">
cd /opt/Syncrify
./SyncrifyClient.sh
</pre>
<p>Be patient&#8230; after a few seconds the client will appear (Note: this will not work if Xorg is not installed as per step #3):</p>
<p><a href="http://nefaria.com/wp-content/uploads/2013/05/syncrify_client_1.png"><img src="http://nefaria.com/wp-content/uploads/2013/05/syncrify_client_1.png" alt="Syncrify Client (main)" width="920" height="549" class="aligncenter size-full wp-image-1377" /></a></p>
<p>Configuring individual backup profiles is beyond the scope of this document&#8230; if you&#8217;ve made it this far then you should be more than capable of configuring a backup profile :-)</p>
<p><span style="text-decoration: underline;"><strong>Notes:</strong></span></p>
<ul>
<li>Be aware that Syncrify stores settings in <em>~/.syncrify</em>. It&#8217;s likely that you&#8217;ll never need to mess with anything in that directory, but you should at least know that it exists.</li>
<li>Make sure that when you create a new backup profile (File -> Add Profile&#8230;) that you give it the same name that was specified in the line #2 of <em>/opt/Syncrify/Backup.sh.</em> In the example contained within this post, the backup profile is named <em>my_backup_profile</em> and the settings for this profile are stored in <em>~/.syncrify/my_backup_profile.syncrify</em>.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nefaria.com/2013/05/configure-syncrify-client-x64-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving autocomplete history in Outlook 2010 (and later)</title>
		<link>http://nefaria.com/2013/05/saving-autocomplete-history-in-outlook-2010-and-later/</link>
		<comments>http://nefaria.com/2013/05/saving-autocomplete-history-in-outlook-2010-and-later/#comments</comments>
		<pubDate>Thu, 09 May 2013 16:21:32 +0000</pubDate>
		<dc:creator>musashi</dc:creator>
				<category><![CDATA[I.T.]]></category>
		<category><![CDATA[autocomplete]]></category>
		<category><![CDATA[NK2Edit]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://nefaria.com/?p=1328</guid>
		<description><![CDATA[Anyone who has had to transfer a user&#8217;s MS Outlook data from one computer or another has probably heard this question before: &#8220;Where are all my addresses?&#8221; Of course, you transferred the contacts so, confused, you ask the user what they&#8217;re talking about. The user then shows you that whenever they try to compose an [...]]]></description>
				<content:encoded><![CDATA[<p>Anyone who has had to transfer a user&#8217;s MS Outlook data from one computer or another has probably heard this question before:</p>
<p>&#8220;Where are all my addresses?&#8221;</p>
<p>Of course, you transferred the contacts so, confused, you ask the user what they&#8217;re talking about. The user then shows you that whenever they try to compose an e-mail, addresses do not &#8220;auto-fill&#8221; &#8212; hence &#8220;Where are all my addresses?&#8221;</p>
<p>Worse: in older versions of Outlook, there was no &#8220;Suggested Contacts&#8221; functionality so this sometimes lead to users completely disregarding the use of their address book, instead opting to depend solely upon autocomplete history. </p>
<p>Explaining to a user why this is bad practice will often get you nowhere. Luckily, most of the time you could just locate the *.nk2 file in their old profile and copy it to their new profile to restore their autocomplete history. This process has become slightly more complicated in Outlook 2010, but it&#8217;s still a simple thing to recover, provided you still have access to the original user profile.</p>
<ol>
<li>Locate the data file that contains the old autocomplete history. It will be in <em>%userprofile%\AppData\Local\Microsoft\Outlook\RoamCache</em></li>
<li>It will be named something like: <em>Stream_Autocomplete_0_2CB1C400532AC94FAA6D3387E44FAE5B.dat</em> &#8230; make a backup copy of this file and keep it in a safe place. If there are multiple similarly named files, backup all of them. Note that the largest file is likely the most important one.</li>
<li>Locate the autocomplete file in the new userprofile; it will be in the same location but it will have a different name.</li>
<li>Make a backup copy of the new one just in case it also contains autocomplete data that the user doesn&#8217;t want to lose and/or does not already have.</li>
<li>Replace the new file with the old one from the old profile. Usually this just means that you overwrite the new file with the old one, ensuring that you change the name of the old file (the one containing all the data) to the filename of the new one. Make sure Outlook is not open when you do this. Alternatively, you can use <a href="http://www.nirsoft.net/utils/outlook_nk2_edit.html">NK2Edit</a> to merge these files.</li>
<li>Open Outlook and try to compose a new e-mail; your autocomplete history should be restored.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nefaria.com/2013/05/saving-autocomplete-history-in-outlook-2010-and-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kensington Train Station / Nothing But Blue (update)</title>
		<link>http://nefaria.com/2013/04/kensington-train-station-nothing-but-blue-update/</link>
		<comments>http://nefaria.com/2013/04/kensington-train-station-nothing-but-blue-update/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 14:58:43 +0000</pubDate>
		<dc:creator>musashi</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Kensington Train Station]]></category>
		<category><![CDATA[Nothing But Blue]]></category>

		<guid isPermaLink="false">http://nefaria.com/?p=1302</guid>
		<description><![CDATA[I&#8217;ve written about this previously but last week I was pleasantly surprised by a package that arrived at my office. It contained two copies of the book, a note, and several jacket covers: The note reads: Thanks so much, Charles, for your beautiful photograph. We&#8217;ve already gotten favorable reviews from our test readers, and we&#8217;re [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://nefaria.com/wp-content/uploads/2013/04/nothing-but-blue3.jpg"><img src="http://nefaria.com/wp-content/uploads/2013/04/nothing-but-blue3.jpg" alt="Nothing But Blue by Lisa Jahn Clough" width="528" height="226" class="aligncenter size-full wp-image-1325" /></a><a title="Kensington Train Station / Nothing But Blue" href="http://nefaria.com/2012/11/kensington-train-station-nothing-but-blue/" target="_blank">I&#8217;ve written about this previously</a> but last week I was pleasantly surprised by a package that arrived at my office. It contained two copies of <a href="http://www.amazon.com/Nothing-but-Blue-Lisa-Jahn-Clough/dp/0618959610" target="_blank">the book</a>, a note, and several jacket covers:</p>

<a href="http://nefaria.com/wp-content/gallery/miscellaneous-media/nothingbutblue_1.jpg" title="" class="shutterset_singlepic989" >
	<img class="ngg-singlepic ngg-center" src="http://nefaria.com/wp-content/gallery/cache/989__320x240_nothingbutblue_1.jpg" alt="nothingbutblue_1" title="nothingbutblue_1" />
</a>

<p>The note reads:</p>
<blockquote><p>Thanks so much, Charles,<br />
for your beautiful photograph.<br />
We&#8217;ve already gotten<br />
favorable reviews from<br />
our test readers, and<br />
we&#8217;re grateful to you!<br />
Thanks again<br />
Susanna</p></blockquote>
<p>It&#8217;s hard to understate what a big deal this is to me&#8230; first, this photo was taken entirely by chance &#8212; one foggy morning when I should have been getting ready for work, I decided to run outside in my pajamas and snap a few pictures. Second, I uploaded it to <a href="http://nefaria.com/2009/03/new-photography-kensington-train-station-1/" title="New Photography: Kensington Train Station (1)" target="_blank">my website</a>, <a href="http://www.flickr.com/photos/musashixxx/" target="_blank">flickr</a>, and <a href="http://musashixxx.deviantart.com/" target="_blank">deviantART</a> and then kind of forgot about it for a few years. Then one day out of the blue (no pun intended) I get an e-mail from Susanna asking me to confirm if this photo was mine. The rest is history.</p>
<p>This is the first photograph of mine that has been used professionally and it has given me the motivation that I needed to ensure that it (hopefully) won&#8217;t be the last.</p>
<p>In closing, I just wanted to say thanks to Susanna Vagt, Houghton Mifflin, and Lisa Jahn-Clough for supporting my habit :-)</p>
<p><strong>Additional links / References</strong><br />
<a href="http://www.amazon.com/Nothing-but-Blue-Lisa-Jahn-Clough/dp/0618959610" target="_blank">Nothing But Blue on Amazon.com</a><br />
<a href="http://www.flickr.com/photos/musashixxx/4739929981/in/photostream" target="_blank">Original Photo (Kensington Train Station, angle 1)</a><br />
<a href="http://nefaria.com/2012/11/kensington-train-station-nothing-but-blue/" title="Kensington Train Station / Nothing But Blue" target="_blank">Previous post on this topic</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nefaria.com/2013/04/kensington-train-station-nothing-but-blue-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Syncrify Server (x64) on Linux</title>
		<link>http://nefaria.com/2013/03/configuring-syncrify-x64-on-linux/</link>
		<comments>http://nefaria.com/2013/03/configuring-syncrify-x64-on-linux/#comments</comments>
		<pubDate>Tue, 26 Mar 2013 14:10:07 +0000</pubDate>
		<dc:creator>musashi</dc:creator>
				<category><![CDATA[I.T.]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux backup software]]></category>
		<category><![CDATA[Syncrify]]></category>
		<category><![CDATA[Syncrify configuration]]></category>
		<category><![CDATA[Syncrify upstart script]]></category>

		<guid isPermaLink="false">http://nefaria.com/?p=1248</guid>
		<description><![CDATA[As far as diy offsite backup software goes, Syncrify is pretty neat. I do have one complaint though; the documentation covering the x64 version for Linux is lacking (read: damn near nonexistent). In addition, you have to write your own startup script. This post intends to clear this up a bit&#8211;mainly for my own sanity&#8211;and [...]]]></description>
				<content:encoded><![CDATA[<p>As far as diy offsite backup software goes, <a href="http://web.synametrics.com/Syncrify.htm">Syncrify</a> is pretty neat. I do have one complaint though; the documentation covering the x64 version for Linux is lacking (read: damn near nonexistent). In addition, you have to write your own startup script. This post intends to clear this up a bit&#8211;mainly for my own sanity&#8211;and hopefully be of some help to others who might want to deploy a Syncrify server. This post assumes that you are using some flavor of Debian, in a 64 bit environment. These instructions have been tested on Ubuntu 12.04 (x64).</p>
<p><span style="text-decoration: underline;"><strong>Step #1: Configure java</strong></span></p>
<p>This is the simplest way I&#8217;ve found to get java configured for use with Syncrify. There are many ways to do this, feel free to deviate from this step.</p>
<pre class="brush: bash; title: ; notranslate">
apt-get install python-software-properties
add-apt-repository ppa:webupd8team/java
apt-get update
apt-get install oracle-jdk7-installer
</pre>
<p>You will have to accept the license agreement from line #4 in order to continue. After the installation, you can verify that everything ran correctly by doing the following:</p>
<pre class="brush: bash; title: ; notranslate">
update-alternatives --display java &amp;&amp; javac -version
</pre>
<p>The output of this command should be:</p>
<pre class="brush: bash; title: ; notranslate">
java - auto mode
  link currently points to /usr/lib/jvm/java-7-oracle/jre/bin/java
/usr/lib/jvm/java-7-oracle/jre/bin/java - priority 1
  slave java.1.gz: /usr/lib/jvm/java-7-oracle/man/man1/java.1.gz
Current 'best' version is '/usr/lib/jvm/java-7-oracle/jre/bin/java'.
javac 1.7.0_17
</pre>
<p>Next, edit <em>/etc/environment</em> and add the following line:</p>
<pre class="brush: plain; title: ; notranslate">
JAVA_HOME=&quot;/usr/lib/jvm/java-7-oracle&quot;
</pre>
<p><span style="text-decoration: underline;"><strong>Step #2: Configure the upstart script</strong></span></p>
<p>Copy and paste the following text into a file and save it as <em>/etc/init/syncrify.conf</em>:</p>
<pre class="brush: bash; title: ; notranslate">
# Syncrify - Upstart script for Syncrify

description &quot;Syncrify backup manager&quot;
author &quot;Charles Hamilton &lt;musashi@nefaria.com&gt;&quot;

start on runlevel [2345]
stop on runlevel [016]
respawn

script
        cd /opt/Syncrify
        CP=&quot;&quot;
        for i in `ls /opt/Syncrify/lib/*.jar`; do
                CP=$CP:$i
        done
        /usr/bin/java -server -Xmx512m -cp $CP -DLoggingConfigFile=/opt/Syncrify/logconfig.xml com.synametrics.sradef.BootLoader
end script
</pre>
<p><span style="text-decoration: underline;"><strong>Step #3: Download and &#8220;install&#8221; Syncrify</strong></span></p>
<pre class="brush: bash; title: ; notranslate">
mkdir /opt/Syncrify
cd /opt/Syncrify
wget http://www2.synametrics.com/files/Syncrify/SyncrifyOther.tar.gz
tar -xf SyncrifyOther.tar.gz
chown -R root.root /opt/Syncrify
service syncrify start
</pre>
<p>At this point, you should be able to browse to <a href="http://127.0.0.1:5800">http://127.0.0.1:5800</a>. Alternatively, if you are running a server without a gui, you can do the following:</p>
<p>Edit <em>/opt/Syncrify/config/AppConfig.xml</em> and modify this line:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;parameter name=&quot;httpIP&quot; type=&quot;1&quot; value=&quot;&quot;&gt;&lt;/parameter&gt;
</pre>
<p>&#8230;to look like this:</p>
<pre class="brush: plain; title: ; notranslate">
&lt;parameter name=&quot;httpIP&quot; type=&quot;1&quot; value=&quot;192.168.0.5&quot;&gt;&lt;/parameter&gt;
</pre>
<p>Where the IP address: &#8220;192.168.0.5&#8243; belongs to the machine on which you&#8217;re configuring Syncrify. Save the file and kill Syncrify with a good old fashioned kill -9, then ./run.sh again to restart the service. Now you should be able to browse to <a href="http://192.168.0.5:5800">http://192.168.0.5:5800</a>. If, for some reason, nothing appears when browsing to that URL, make sure that Syncrify is running. If it isn&#8217;t, try starting it with the included &#8220;run&#8221; script:</p>
<pre class="brush: bash; title: ; notranslate">
/opt/Syncrify/run.sh
</pre>
<p>Try to browse to <a href="http://127.0.0.1:5800">http://127.0.0.1:5800</a> (alternatively, <a href="http://192.168.0.5:5800">http://192.168.0.5:5800</a>) &#8230; if this works then something is probably wrong with the upstart script. Make sure you copied/pasted correctly, then make sure permissions are correct: </p>
<pre class="brush: bash; title: ; notranslate">
chown -R root.root /opt/Syncrify
chown root.root /etc/init/syncrify.conf &amp;&amp; chmod 0644 /etc/init/syncrify.conf
</pre>
<p>Once you&#8217;ve managed to browse to the admin page (http://host:5800) you will be prompted to start configuring the server (these should be self explanatory):</p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/1_0.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_1_0.png' alt='1_0' class='ngg-singlepic ngg-center' /></a></p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/2_0.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_2_0.png' alt='2_0' class='ngg-singlepic ngg-center' /></a></p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/3_0.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_3_0.png' alt='3_0' class='ngg-singlepic ngg-center' /></a></p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/4_1.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_4_1.png' alt='4_1' class='ngg-singlepic ngg-center' /></a></p>
<p>Once you&#8217;ve gone through the prompts, login and enable SSL by navigating to the HTTP Configuration page and fill in the text box for &#8220;Secure HTTP Port&#8221; &#8230; it will be -1 by default; change it to whatever you want:</p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/configure_https_1.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_configure_https_1.png' alt='configure_https_1' class='ngg-singlepic ngg-center' /></a></p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/configure_https_2.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_configure_https_2.png' alt='configure_https_2' class='ngg-singlepic ngg-center' /></a></p>
<p><a class="shutterset_" href='http://nefaria.com/wp-content/gallery/miscellaneous-media/configure_https_3.png' title=''><img src='http://nefaria.com/wp-content/gallery/miscellaneous-media/thumbs/thumbs_configure_https_3.png' alt='configure_https_3' class='ngg-singlepic ngg-center' /></a></p>
<p>Of course, this means you&#8217;re going to be using Syncrify&#8217;s bundled certificate with your server. I plan on updating this post sometime in the future with instructions on how to install a real SSL cert. Anyway, now all you have to do is configure your backup clients/user accounts and you&#8217;re done.</p>
]]></content:encoded>
			<wfw:commentRss>http://nefaria.com/2013/03/configuring-syncrify-x64-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem with using ExpressMaint with Microsoft SQL Express 2012</title>
		<link>http://nefaria.com/2013/03/problem-with-using-expressmaint-with-microsoft-sql-express-2012/</link>
		<comments>http://nefaria.com/2013/03/problem-with-using-expressmaint-with-microsoft-sql-express-2012/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 15:25:52 +0000</pubDate>
		<dc:creator>musashi</dc:creator>
				<category><![CDATA[I.T.]]></category>
		<category><![CDATA[ExpressMaint]]></category>
		<category><![CDATA[SQL Express]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://nefaria.com/?p=1233</guid>
		<description><![CDATA[If you are trying to use ExpressMaint with Microsoft SQL Express 2012, you will most likely run across the following error: This is easily repaired by installing the following items (as appropriate for your system architecture): Microsoft® System CLR Types for SQL Server® 2008 R2 X86 Package(SQLSysClrTypes.msi) X64 Package (SQLSysClrTypes.msi) IA64 Package(SQLSysClrTypes.msi) Microsoft® SQL Server® [...]]]></description>
				<content:encoded><![CDATA[<p>If you are trying to use <a href="http://expressmaint.codeplex.com/">ExpressMaint</a> with Microsoft SQL Express 2012, you will most likely run across the following error:</p>
<pre class="brush: plain; title: ; notranslate">
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.SqlServer.Smo, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.
</pre>
<p>This is easily repaired by installing the following items (as appropriate for your system architecture):</p>
<p><strong>Microsoft® System CLR Types for SQL Server® 2008 R2</strong></p>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=188391&#038;clcid=0x409">X86 Package(SQLSysClrTypes.msi)</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=188392&#038;clcid=0x409">X64 Package (SQLSysClrTypes.msi)</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=188393&#038;clcid=0x409">IA64 Package(SQLSysClrTypes.msi)</a></li>
</ul>
<p><strong>Microsoft® SQL Server® 2008 R2 Shared Management Objects</strong></p>
<ul>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=188438&#038;clcid=0x409">X86 Package (SharedManagementObjects.msi)</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=188439&#038;clcid=0x409">X64 Package (SharedManagementObjects.msi)</a></li>
<li><a href="http://go.microsoft.com/fwlink/?LinkID=188440&#038;clcid=0x409">IA64 Package (SharedManagementObjects.msi)</a></li>
</ul>
<p><em>All of these items are part of the <a href="http://www.microsoft.com/en-us/download/confirmation.aspx?id=16978">Microsoft® SQL Server® 2008 R2 Feature Pack</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://nefaria.com/2013/03/problem-with-using-expressmaint-with-microsoft-sql-express-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
