<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Michael Ellerbeck</title>
	<atom:link href="http://michaelellerbeck.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://michaelellerbeck.com</link>
	<description>Michael Ellerbeck</description>
	<lastBuildDate>Wed, 01 Sep 2010 21:48:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='michaelellerbeck.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/bc9007381be96a82dcdbea016395dd4a?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Michael Ellerbeck</title>
		<link>http://michaelellerbeck.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://michaelellerbeck.com/osd.xml" title="Michael Ellerbeck" />
	<atom:link rel='hub' href='http://michaelellerbeck.com/?pushpress=hub'/>
		<item>
		<title>How to save a Bitonal .tiff using CompressionCCITT4</title>
		<link>http://michaelellerbeck.com/2010/09/01/how-to-save-a-bitonal-tiff-using-compressionccitt4/</link>
		<comments>http://michaelellerbeck.com/2010/09/01/how-to-save-a-bitonal-tiff-using-compressionccitt4/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 21:46:57 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Applied IT]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1168</guid>
		<description><![CDATA[This was a pain&#8230;. There are a couple of articles that got me really close, but this one was the finisher! http://www.eggheadcafe.com/software/aspnet/29093592/key-to-speed&#8211;use-byte-array-instead-of-writing-to-locked-image-bytes.aspx The trick was when I was converting the C# to vb.net from this article http://www.codeproject.com/KB/GDI-plus/SaveMultipageTiff.aspx?fid=370645&#38;fr=1#xx0xx It mentions that you need to cast the bytes to ints This is the salient line pixelTotal = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1168&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This was a pain&#8230;. There are a couple of articles that got me really close, but this one was the finisher!</p>
<p><a href="http://www.eggheadcafe.com/software/aspnet/29093592/key-to-speed--use-byte-array-instead-of-writing-to-locked-image-bytes.aspx">http://www.eggheadcafe.com/software/aspnet/29093592/key-to-speed&#8211;use-byte-array-instead-of-writing-to-locked-image-bytes.aspx</a></p>
<p>The trick was when I was converting the C# to vb.net from this article</p>
<p><a href="http://www.codeproject.com/KB/GDI-plus/SaveMultipageTiff.aspx?fid=370645&amp;fr=1#xx0xx">http://www.codeproject.com/KB/GDI-plus/SaveMultipageTiff.aspx?fid=370645&amp;fr=1#xx0xx</a></p>
<p>It mentions that you need to cast the bytes to ints</p>
<p>This is the salient line</p>
<pre>pixelTotal = CInt(sourceBuffer(sourceIndex + 1)) + CInt(sourceBuffer(sourceIndex + 2)) + CInt(sourceBuffer(sourceIndex + 3))
Here is more info
<a href="http://www.bobpowell.net/onebit.htm">http://www.bobpowell.net/onebit.htm</a>
Also, note that if you want to retain the resolution you need to
In the ConvertToBitonal routine add the line marked below:

// Create destination bitmap
Bitmap destination = new Bitmap(source.Width, source.Height, PixelFormat.Format1bppIndexed);

-----&gt; destination.SetResolution(source.HorizontalResolution, source.VerticalResolution);</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1168&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/09/01/how-to-save-a-bitonal-tiff-using-compressionccitt4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>ECM, Lions and Tigers and Bears oh my? oh yeah and ImageSource</title>
		<link>http://michaelellerbeck.com/2010/08/28/ecm-lions-and-tigers-and-bears-oh-my-oh-yeah-and-imagesource/</link>
		<comments>http://michaelellerbeck.com/2010/08/28/ecm-lions-and-tigers-and-bears-oh-my-oh-yeah-and-imagesource/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 05:46:02 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ecm]]></category>
		<category><![CDATA[ILINX]]></category>
		<category><![CDATA[ILINX Capture]]></category>
		<category><![CDATA[ILINX Content Store]]></category>
		<category><![CDATA[ILINX Integrate]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1160</guid>
		<description><![CDATA[A foray into ECM, some ImageSource products, ILINX Capture, ILINX Content Store, ILINX Integrate<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1160&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">So recently we have embarked on an ECM adventure. For those of you who aren&#8217;t in the know ECM stands for Enterprise Content Management.</div>
<div id="_mcePaste">At first blush it seems a lot of people assume that ECM is an &#8216;imaging&#8217; or a &#8216;document scanning project&#8217; I ranted about this particular viewpoint in</div>
<div id="_mcePaste">this blog post <a href="http://michaelellerbeck.com/2008/01/24/information-management-going-paperless-all-wrong/">here</a>. After a lot of discussion one of our Mantras has become &#8216;Data is Key&#8217; or put another way, only scan something as the last resort, if there is no other way.</div>
<div id="_mcePaste">As an example, let&#8217;s say a vendor is sending you an invoice. Old school is they send you the bill in the mail, slightly better is they fax it to you, even better they email it to you.</div>
<div id="_mcePaste">And then at the top of the Heirarchy is they send it to you electronicaly using something like EDI. (Full disclourse, I handle EDI at my current place of employment so no bias there I can assure you!) But why is this the case? Because sending it electronically removes the manual data entry, and chance of human error, and greatly improves the speed of the transaction.</div>
<div></div>
<div>Some vendors are just too small, or don&#8217;t have the technical know how to implement EDI. So in those cases you still are going to recieve some paper of some sort. Once again back to the mantra of &#8216;Only scan as a last resort&#8217;. In reality we probably first should have investigated getting our vendors to use a service such as transcepta. What this service does is accept any sort of invoice whether they send a PDF to transcepta or print an invoice to them using a &#8216;Virtual printer&#8217; or at the lowest part of the pyramid they have a web portal</div>
<div id="_mcePaste">that a vendor can input their invoice on. I haven&#8217;t been on the recieving end of transcepta but I do submit EDI invoices through them and they were very easy to work with!</div>
<div id="_mcePaste">Anyways, that solution would probably have required a greater amount of change then we could take at this moment. Although on other fronts we are using Taleo now for our front end for hiring, aiming to element those paper forms (once again capture the data, and not the image if you possibly can). I was glad we got that moving before our ECM initiative rolled out</div>
<div id="_mcePaste">because I didn&#8217;t want to be scanning those worthless pieces of paper if we could capture the data a different way. We also recently started using PowerTrack, another way of consolidating and eliminating manual labour and paper forms.</div>
<div></div>
<div id="_mcePaste">So, assuming you actually have to scan something. What sort of ECM system should you use? We tried to do our research and get a solution that would work well for us.</div>
<div id="_mcePaste">We looked at Alfresco and its flat rate and easy to understand licensing was very appealing. Sharepoint was another interesting one, although of course the licensing is</div>
<div id="_mcePaste">impossible to understand. Finally after many demos and much deliberation we went with a local vendor called imagesource.</div>
<div></div>
<div id="_mcePaste">The three products that we got complement each other nicely. The first, and probably most polished, is a product called ILINX Capture. This is a web based capture\workflow product</div>
<div id="_mcePaste">that imagesource got up and running for us amazingly quick! On the backend it has a really impressive graphical workflow creator.</div>
<div id="_mcePaste"><a href="http://www.ilinxcapture.com/Solutions/CaptureWorkflow/index.htm">http://www.ilinxcapture.com/Solutions/CaptureWorkflow/index.htm</a></div>
<div></div>
<div id="_mcePaste">In some ways it reminds me of another one of my favorite products Altova Mapforce. I&#8217;ve already suggested a few ideas &#8216;borrowed&#8217; from Mapforce that I think imagesource could adopt in their product. Another interesting thing the Capture product has is the ability to create QSX modules. Basically, add your own processing elements to the visual workflow. I hear they have a class for this, I would be interested in learning more about it. One typical module they have is the barcode separator module. This post is an interesting explanation</div>
<div id="_mcePaste"><a href="http://ecmtechnicalsupport.wordpress.com/2010/01/30/barcode-document-separation-with-ilinx-capture/">http://ecmtechnicalsupport.wordpress.com/2010/01/30/barcode-document-separation-with-ilinx-capture/</a></div>
<div id="_mcePaste">Actually, imageSource has quite a few really nice blogs scattered around.</div>
<div></div>
<div id="_mcePaste">Once our docs make it out of capture they move into ILINX Content Store, a lean, mean content store machine. This is a pretty new product of imagesource so we are getting to watch</div>
<div id="_mcePaste">it grow as we are starting to use it. It has some limitations at the moment but we like the direction and how fast things are getting done with it!</div>
<div></div>
<div id="_mcePaste">I will need to post some screen shots and more explanations. But finally, imageSource has a product called integrate that you can use to connect pretty much any system to any system.</div>
<div id="_mcePaste">So thats the line up folks, I will let you know how it goes!</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1160&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/28/ecm-lions-and-tigers-and-bears-oh-my-oh-yeah-and-imagesource/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>java security</title>
		<link>http://michaelellerbeck.com/2010/08/11/java-security/</link>
		<comments>http://michaelellerbeck.com/2010/08/11/java-security/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 18:45:23 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1157</guid>
		<description><![CDATA[So we have noticed a lot more malware attempts and were wondering where they were coming from. Apparently java version 20 fixes a hole that was being used to install spyware. I would recommend updating. If you can&#8217;t update you can always use the killbit! which just sounds cool! http://www.kb.cert.org/vuls/id/886582 read to the bottom for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1157&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So we have noticed a lot more malware attempts and were wondering where they were coming from. Apparently java version 20 fixes a hole that was being used to install spyware. I would recommend updating. If you can&#8217;t update you can always use the killbit! which just sounds cool!</p>
<p><a href="http://www.kb.cert.org/vuls/id/886582">http://www.kb.cert.org/vuls/id/886582</a></p>
<p>read to the bottom for a how to</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1157/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1157/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1157/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1157&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/11/java-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>the specified setup script file (c:\sgdeploy\unattend.txt) is inaccessible or invalid, contact system administrator</title>
		<link>http://michaelellerbeck.com/2010/08/09/the-specified-setup-script-file-csgdeployunattend-txt-is-inaccessible-or-invalid-contact-system-administrator/</link>
		<comments>http://michaelellerbeck.com/2010/08/09/the-specified-setup-script-file-csgdeployunattend-txt-is-inaccessible-or-invalid-contact-system-administrator/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 15:49:18 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1155</guid>
		<description><![CDATA[You are using a character that (maybe your password) serverGuide doesn&#8217;t like. So far suspected bad characters&#8230; @ &#8220;&#8221; and of course ; http://www.ibm.com/developerworks/forums/thread.jspa?threadID=235819<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1155&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>You are using a character that (maybe your password) serverGuide doesn&#8217;t like.</p>
<p>So far suspected bad characters&#8230; @ &#8220;&#8221; and of course ;</p>
<p><a href="http://www.ibm.com/developerworks/forums/thread.jspa?threadID=235819">http://www.ibm.com/developerworks/forums/thread.jspa?threadID=235819</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1155&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/09/the-specified-setup-script-file-csgdeployunattend-txt-is-inaccessible-or-invalid-contact-system-administrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>I hate real (physical) i.e. non virtual servers&#8230;</title>
		<link>http://michaelellerbeck.com/2010/08/09/i-hate-real-physical-i-e-non-virtual-servers/</link>
		<comments>http://michaelellerbeck.com/2010/08/09/i-hate-real-physical-i-e-non-virtual-servers/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 15:44:36 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1153</guid>
		<description><![CDATA[Let me spin you my tail of woe&#8230; We had this software package that required a physical server&#8230; well that should tell you something right off, anyways wasn&#8217;t my decision so we needed a &#8216;real&#8217; server So we first bought the cheapest HP server we could&#8230; now talk about fail, their install CD would blue [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1153&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Let me spin you my tail of woe&#8230;</p>
<p>We had this software package that required a physical server&#8230; well that should tell you something right off, anyways wasn&#8217;t my decision so we needed a &#8216;real&#8217; server</p>
<p>So we first bought the cheapest HP server we could&#8230; now talk about fail, their install CD would blue screen when trying to install server 2003 of all things&#8230;</p>
<p>Couldn&#8217;t figure out the hardware in the box, in order to load the RAID drivers using F6 magic (haven&#8217;t done that in ages&#8230; ) anyways piles of frustration&#8230;</p>
<p>So sent that box back and ordered IBM&#8230;</p>
<p>Well our vendor, who shall not be named to protect the guilty. Managed to order the wrong drives.. not once&#8230; but twice&#8230; so finally we have some drives that will work&#8230;</p>
<p>And we use the magic IBM CD to install server 2003 which of course crashes out with a script error!!!! Sheesh can&#8217;t we catch a break..</p>
<p>Well, after wasting a few hours trying various things&#8230;  finally hit on this post <a href="http://www.ibm.com/developerworks/forums/thread.jspa?threadID=235819">http://www.ibm.com/developerworks/forums/thread.jspa?threadID=235819</a></p>
<p>Apparently, there are some characters you can&#8217;t use in your password if you use IBM ServerGuide and my password was lucky enough to contain it! Use a different password and whalaa the magic CD works&#8230;</p>
<p>Oh yeah, in VMware I can right click and make a new server in about 2 minutes!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1153&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/09/i-hate-real-physical-i-e-non-virtual-servers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Hey IBM, why don&#8217;t you ship a copy of ServerGuide with your x3250 M3</title>
		<link>http://michaelellerbeck.com/2010/08/06/hey-ibm-why-dont-you-ship-a-copy-of-serverguide-with-your-x3250-m3/</link>
		<comments>http://michaelellerbeck.com/2010/08/06/hey-ibm-why-dont-you-ship-a-copy-of-serverguide-with-your-x3250-m3/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 17:17:18 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1151</guid>
		<description><![CDATA[Lame! you gave us a system directer cd and a useless documentation cd, but couldn&#8217;t spring for the server guide CD? Lame on you<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1151&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lame! you gave us a system directer cd and a useless documentation cd, but couldn&#8217;t spring for the server guide CD? Lame on you</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1151/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1151/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1151/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1151&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/06/hey-ibm-why-dont-you-ship-a-copy-of-serverguide-with-your-x3250-m3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Couple o&#8217; interesting EqualLogic posts</title>
		<link>http://michaelellerbeck.com/2010/08/05/couple-o-interesting-equallogic-posts/</link>
		<comments>http://michaelellerbeck.com/2010/08/05/couple-o-interesting-equallogic-posts/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 14:25:11 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1149</guid>
		<description><![CDATA[Command line firmware upgrade http://addicted-to-it.blogspot.com/2010/08/equallogic-ps-436-firmware-upgrade.html And what to do if your firmware update fails because of lack of space http://www.robertwmartin.com/?p=77<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1149&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Command line firmware upgrade</p>
<p><a href="http://addicted-to-it.blogspot.com/2010/08/equallogic-ps-436-firmware-upgrade.html">http://addicted-to-it.blogspot.com/2010/08/equallogic-ps-436-firmware-upgrade.html</a></p>
<p>And what to do if your firmware update fails because of lack of space</p>
<p><a href="http://www.robertwmartin.com/?p=77">http://www.robertwmartin.com/?p=77</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1149&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/05/couple-o-interesting-equallogic-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Outlook was freezing for like a minute after clicking a web link</title>
		<link>http://michaelellerbeck.com/2010/08/03/outlook-was-freezing-for-like-a-minute-after-clicking-a-web-link/</link>
		<comments>http://michaelellerbeck.com/2010/08/03/outlook-was-freezing-for-like-a-minute-after-clicking-a-web-link/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 21:55:28 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1147</guid>
		<description><![CDATA[trolled the web found people recommending running help, detect and repair, uncheck the shortcut box, and check the discard my customized settings and restore default settings&#8230;. Whaddya know, this actually did the trick..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1147&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>trolled the web found people recommending running help, detect and repair, uncheck the shortcut box, and check the discard my customized settings and restore default settings&#8230;.</p>
<p>Whaddya know, this actually did the trick..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1147&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/08/03/outlook-was-freezing-for-like-a-minute-after-clicking-a-web-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows ate my dll unable to locate msvcp71 sql</title>
		<link>http://michaelellerbeck.com/2010/07/30/windows-ate-my-dll-unable-to-locate-msvcp71-sql/</link>
		<comments>http://michaelellerbeck.com/2010/07/30/windows-ate-my-dll-unable-to-locate-msvcp71-sql/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 18:09:04 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1144</guid>
		<description><![CDATA[So of course SQL server service wouldn&#8217;t start (happy sysadmin day to you as well) after poking around I tried to fire up enterprise manager and it complained about a missing msvcp71.dll What the heck! So luckily the old SP4 folder was on the server on loe and behold it had a copy of of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1144&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So of course SQL server service wouldn&#8217;t start (happy sysadmin day to you as well) after poking around I tried to fire up enterprise manager and it complained about a missing msvcp71.dll</p>
<p>What the heck!</p>
<p>So luckily the old SP4 folder was on the server on loe and behold it had a copy of of msvcp71.dll in it. Copied it over to the c:\windows\system32 and then it works&#8230; windows&#8230; go figure.</p>
<p>If you need a copy of msvcp71.dll you can get it here (if you trust random internet strangers&#8230;) but hey I just uploaded it from my box <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://sites.google.com/site/mellerbeck/Home/msvcp71.zip?attredirects=0&amp;d=1">http://sites.google.com/site/mellerbeck/Home/msvcp71.zip?attredirects=0&amp;d=1</a></p>
<p>(this is 32bit version if it matters)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1144&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/07/30/windows-ate-my-dll-unable-to-locate-msvcp71-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
		<item>
		<title>Gabe Phillips, Transportation Planning</title>
		<link>http://michaelellerbeck.com/2010/06/29/gabe-phillips-transportation-planning/</link>
		<comments>http://michaelellerbeck.com/2010/06/29/gabe-phillips-transportation-planning/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 17:18:36 +0000</pubDate>
		<dc:creator>mellerbeck</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[resume]]></category>

		<guid isPermaLink="false">http://michaelellerbeck.com/?p=1141</guid>
		<description><![CDATA[Gabe is awesome, and looking for a Job in Planning \ Transportation Planning<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1141&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have an awesome friend who is looking for a job in Planning \ Transportation Planning. Please pass on his resume to those in your network who might need someone with his skills.</p>
<p>Gabe&#8217;s resume <a href="http://sites.google.com/site/mellerbeck/Home/Resume-GabePhilips.doc?attredirects=0&amp;d=1">http://sites.google.com/site/mellerbeck/Home/Resume-GabePhilips.doc?attredirects=0&amp;d=1</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mellerbeck.wordpress.com/1141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mellerbeck.wordpress.com/1141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mellerbeck.wordpress.com/1141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mellerbeck.wordpress.com/1141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mellerbeck.wordpress.com/1141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mellerbeck.wordpress.com/1141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mellerbeck.wordpress.com/1141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mellerbeck.wordpress.com/1141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=michaelellerbeck.com&blog=2049318&post=1141&subd=mellerbeck&ref=&feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://michaelellerbeck.com/2010/06/29/gabe-phillips-transportation-planning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ffebb155a6c1fd8217993adbf11cc97b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mellerbeck</media:title>
		</media:content>
	</item>
	</channel>
</rss>