<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Realm of the Verbal Processor</title>
	<atom:link href="http://verbalprocessor.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://verbalprocessor.com</link>
	<description>Jarvis's Ramblings</description>
	<pubDate>Thu, 17 Jul 2008 16:39:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Slow OSD download fixed (HTTP/WEBDAV issue)</title>
		<link>http://verbalprocessor.com/2008/07/16/slow-osd-download-fixed-httpwebdav-issue/</link>
		<comments>http://verbalprocessor.com/2008/07/16/slow-osd-download-fixed-httpwebdav-issue/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 20:17:44 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/07/16/slow-osd-download-fixed-httpwebdav-issue/</guid>
		<description><![CDATA[This week I&#8217;ve been beating on a problem with an OSD Task Sequence. It is a TS for deploying the Vista image that I build with my Build and Capture TS. What I was noticing was that in my Deploy TS, it was simply taking entirely too long to download the WIM file. Now granted [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This week I&#8217;ve been beating on a problem with an OSD Task Sequence. It is a TS for deploying the Vista image that I build with my Build and Capture TS. What I was noticing was that in my Deploy TS, it was simply taking entirely too long to download the WIM file. Now granted it is a 3.5gig file, but it was taking approximately 15 minutes to download. With the gigabit connection, it should have been about a minute and a half. WHY???</p>
<p>I enabled command support on my boot image, ran the TS, and pulled up an F8 CMD prompt to take a look at the smsts.log. It has some errors where the HTTP transport was failing with a 405 code. After failing three times, it then switched to SMB and proceeded to download&#8230;very slowly. Here is what I saw in the log:</p>
<blockquote><p>
<p>Initializing HTTP transport.</p>
<p>&nbsp;&nbsp; Setting URL = <a href="http://SCCMfqdn/SMS_DP_SMSDPE$/SMSPKG/SMS00024/">http://SCCMfqdn/SMS_DP_SMSDPE$/SMSPKG/SMS00024/</a>.</p>
<p>&nbsp;&nbsp; Address = SCCMfqdn, Object = /SMS_DP_SMSDPE$/SMSPKG/SMS00024/, Port = 12345.</p>
<p>WinHttp credentials set </p>
<p>CLibSMSMessageWinHttpTransport::Send: URL: </p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SCCMfqdn:12345&nbsp; PROPFIND /SMS_DP_SMSDPE$/SMSPKG/SMS00024/</p>
<p>Error. Status code 405 returned</p>
<p>dwHttpResultCode&gt;=200 &amp;&amp; dwHttpResultCode&lt;=299, HRESULT=80004005 (e:\nts_sms_fre\sms\framework\tscore\downloadcontent.cpp,590)</p>
<p>Http result: 405</p>
<p>SendResourceRequest() failed with 0&#215;80004005</p>
<p>SendResourceRequest(), HRESULT=80004005 (e:\nts_sms_fre\sms\framework\tscore\downloadcontent.cpp,371)</p>
<p>oDavRequest.GetDirectoryListing(setDirs, setFiles), HRESULT=80004005 (e:\nts_sms_fre\sms\framework\tscore\resolvesource.cpp,2419)</p>
<p>Retrying download&#8230;</p>
<p>Tried all the available http based locations. SMB based locations will be attempted now.</p>
</blockquote>
<p>&nbsp;</p>
<p><span id="more-289"></span>
<p>So&#8230;what is that 405 code all about? It&#8217;s an HTTP code for &#8220;Method not allowed&#8221;. I ended up finding a <a href="http://www.derkeiler.com/Newsgroups/microsoft.public.inetserver.iis.security/2006-08/msg00055.html" target="_blank">page</a> that explained that this meant that the HTTP verb (GET, POST, etc) wasn&#8217;t allowed. So&#8230;what verb was it looking for? PROPFIND. That led me to a search on the TechNet ConfigMgr forum for &#8220;propfind&#8221; which pulled up <a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3546514&amp;SiteID=17" target="_blank">this thread</a>. It wasn&#8217;t my exact scenario, but it fit close enough to try. The gist is that there is a line that needs to be in the applicationhost.config file to tell WEBDAV to handle the PROPFIND (and other) verbs. The line is (all on one line&#8230;be careful of smart vs. straight quotes):</p>
<blockquote><p>&lt;add name=&#8221;WebDAV&#8221; path=&#8221;*&#8221; verb=&#8221;PROPFIND,PROPPATCH,MKCOL,PUT,COPY,DELETE,MOVE,LOCK,UNLOCK&#8221; modules=&#8221;WebDAVModule&#8221; resourceType=&#8221;Unspecified&#8221; requireAccess=&#8221;None&#8221; /&gt;</p>
</blockquote>
<p>After putting that line in the file, stopping ConfigMgr, stopping IIS, replacing the file, and starting everything back up&#8230;ConfigMgr got very angry with me. The MP was really ticked. It was officially refusing to do anything. So&#8230;I replaced my modified file with the original that I had copied elsewhere. Everything was happy again&#8230;but still slow.</p>
<p>A bit later my friend <a href="http://poseidom.wordpress.com/" target="_blank">Tim</a> called. I ran it by him, and he gave me the extra couple of bits of information that the TechNet thread was missing. The line that needs to be added to the applicationhost.config file is the right line&#8230;but instead of being added in five places as mentioned in the TechNet thread, it needs to be added in nine places&#8230;all nine of the &#8220;&lt;handlers&gt;&lt;/handlers&gt;&#8221; sections. Also&#8230;it needs to be added before the &#8220;StaticFile&#8221; handler line in each of those sections&#8230;so each of the &#8220;handlers&#8221; sections should end looking like this (three lines&#8230;depending on how much this wraps in your browser):</p>
<blockquote><p>&lt;add name=&#8221;WebDAV&#8221; path=&#8221;*&#8221; verb=&#8221;PROPFIND,PROPPATCH,MKCOL,PUT,COPY,DELETE,MOVE,LOCK,UNLOCK&#8221; modules=&#8221;WebDAVModule&#8221; resourceType=&#8221;Unspecified&#8221; requireAccess=&#8221;None&#8221; /&gt;</p>
<p>&lt;add name=&#8221;StaticFile&#8221; path=&#8221;*&#8221; verb=&#8221;*&#8221; modules=&#8221;StaticFileModule,DefaultDocumentModule,DirectoryListingModule&#8221; resourceType=&#8221;Either&#8221; requireAccess=&#8221;Read&#8221; /&gt;</p>
<p>&lt;/handlers&gt;</p>
</blockquote>
<p>After putting that in place, the HTTP transport worked, and the download took the minute and a half that I expected it to take. The smsts.log looks like this instead:</p>
<blockquote><p>Initializing HTTP transport.
<p>Setting URL = <a href="http://SCCMfqdn/SMS_DP_DP$/SMSPKG/SMS00024/">http://SCCMfqdn/SMS_DP_DP$/SMSPKG/SMS00024/</a>.
<p>Address = SCCMfqdn, Object = /SMS_DP_DP$/SMSPKG/SMS00024/, Port = 12345.
<p>WinHttp credentials set
<p>CLibSMSMessageWinHttpTransport::Send: URL: SCCMfqdn:12345 PROPFIND /SMS_DP_DP$/SMSPKG/SMS00024/
<p>Error. Status code 207 returned
<p>List of files to be downloaded
<p>Directory: <a href="http://SCCMfqdn:12345/SMS_DP_DP$/SMSPKG/SMS00024/">http://SCCMfqdn:12345/SMS_DP_DP$/SMSPKG/SMS00024/</a>
<p>File: <a href="http://SCCMfqdn:12345/SMS_DP_DP$/SMSPKG/SMS00024/xyzabc.wim">http://SCCMfqdn:12345/SMS_DP_DP$/SMSPKG/SMS00024/xyzabc.wim</a>
<p>GetDirectoryListing() successfully completed
<p>Succeeded loading resource DLL &#8216;X:\sms\bin\i386\1033\TSRES.DLL&#8217;
<p>Executing command line: X:\WINDOWS\system32\cmd.exe /k
<p>The command completed successfully.
<p>Successfully launched command shell.
<p>Downloaded file from <a href="http://SCCMfqdn:12345/SMS_DP_DP$/SMSPKG/SMS00024/xyzabc.wim">http://SCCMfqdn:12345/SMS_DP_DP$/SMSPKG/SMS00024/xyzabc.wim</a> to C:\_SMSTaskSequence\Packages\SMS00024\xyzabc.wim
<p>Download done setting progress bar to 100</p>
</blockquote>
<p>It is much happier and faster&#8230;and I&#8217;m much happier.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/289/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/289/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=289&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/07/16/slow-osd-download-fixed-httpwebdav-issue/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>
	</item>
		<item>
		<title>In Memoriam - Jane Clark</title>
		<link>http://verbalprocessor.com/2008/07/07/in-memoriam-jane-clark/</link>
		<comments>http://verbalprocessor.com/2008/07/07/in-memoriam-jane-clark/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 01:40:19 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[Jesus]]></category>

		<category><![CDATA[kids]]></category>

		<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/07/07/in-memoriam-jane-clark/</guid>
		<description><![CDATA[ The Realm of the Verbal Processor has been on mute for the last week. We got an early morning phone call on Sunday June 29. Julie&#8217;s grandmother died. We were able to get reasonable flights to PA the same day (and Julie&#8217;s grandfather offered to pay for the flight). Grandma was 85. She and [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><em><a href="http://verbalprocess.files.wordpress.com/2008/07/grandma.jpg" target="_blank"><img style="border-width:0;" height="157" alt="grandma" src="http://verbalprocess.files.wordpress.com/2008/07/grandma-thumb.jpg?w=240&h=157" width="240" align="right" border="0"></a> The Realm of the Verbal Processor</em> has been on mute for the last week. We got an early morning phone call on Sunday June 29. Julie&#8217;s grandmother died. We were able to get reasonable flights to PA the same day (and Julie&#8217;s grandfather offered to pay for the flight). Grandma was 85. She and Grampa had been married for 64 years. They had been dating since they were both 14 years old. Needless to say, this had been really rough on him losing his sweetheart of the last 71 years.</p>
<p>In a brief conversation with Grampa this week, he mentioned that they had grown a lot closer after they retired to Florida 25 years ago. What struck me was that after 40 years of marriage (25 years ago), they grew significantly closer in years 41-64 of their marriage. That is really cool&#8230;something that Julie and I aspire to. For that matter, we have a great marriage legacy in our families. Thinking about that prompted me to write the post just below this one.</p>
<p>Grandma will be missed. It is only just becoming &#8220;real&#8221; to Julie. It hit pretty hard yesterday&#8230;capped off by a birthday card last night. My birthday is June 30&#8230;the day after Grandma died. They had already sent me a birthday card&#8230;it was in Grandma&#8217;s handwriting. With our traveling to the funeral over the last week, I didn&#8217;t open it until last night. Seeing her Grandma&#8217;s handwriting on my card tipped things over the edge for Julie last night. It&#8217;s very possible that this was the last birthday card she mailed.</p>
<p>That Sunday morning when we told my five year old that Grandma had died, she had this very brief look of shock and horror and then quickly recovered and said, &#8220;We won&#8217;t get to see Grandma any more til we get to heaven. So when we go to Grandma and Grampa&#8217;s house, we&#8217;ll only see Grampa? So now Grandma gets to see the fence?&#8221; </p>
<p>Julie was a little confused at first until she realized what Marybeth was talking about. &#8220;You mean <a href="http://www.biblegateway.com/passage/?search=Revelation%2021:21;&amp;version=47;" target="_blank">the one with the pearls</a>?&#8221; &#8220;Yeah&#8230;that one.&#8221; Then Marybeth started talking about all the things that Grandma gets to do now. She wrapped up with this (in what is a typical stream of consciousness conversation with MB): &#8220;It&#8217;s very sad for us that we won&#8217;t get to see Grandma for a long time til we get to heaven. We&#8217;ll get to see her when we go to heaven, but I don&#8217;t think God wants me to go to heaven when I&#8217;m five&#8230;when I&#8217;m a grown up. Then some day we&#8217;ll all get to go be in heaven, and there won&#8217;t be any more earth, and it will be great because no one will have to die any more.&#8221;</p>
<p>She just had a perfect balance of appropriate sadness because we will miss Grandma mixed with appropriate joy at recognizing that death is not the end of things. She even got the <a href="http://www.biblegateway.com/passage/?search=revelation%2021:1-4;&amp;version=31;" target="_blank">end of things</a> right. I&#8217;m not sure how she knew this because I haven&#8217;t been teaching her any lessons from Revelation, but she nailed it.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/287/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/287/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=287&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/07/07/in-memoriam-jane-clark/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>

		<media:content url="http://verbalprocess.files.wordpress.com/2008/07/grandma-thumb.jpg" medium="image">
			<media:title type="html">grandma</media:title>
		</media:content>
	</item>
		<item>
		<title>Marriage Legacy</title>
		<link>http://verbalprocessor.com/2008/07/07/marriage-legacy/</link>
		<comments>http://verbalprocessor.com/2008/07/07/marriage-legacy/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 01:35:57 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[life]]></category>

		<category><![CDATA[relationships]]></category>

		<category><![CDATA[marriage]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/07/07/marriage-legacy/</guid>
		<description><![CDATA[It has occurred to me a few times that Julie and I come from a tremendous legacy of long marriages.
Both of my sets of grandparents celebrated 55 years of marriage before my grandfathers passed away. Until last week, all four of Julie&#8217;s grandparents were still living&#8230;and both sets were approaching 65 years of marriage. My [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It has occurred to me a few times that Julie and I come from a tremendous legacy of long marriages.</p>
<p>Both of my sets of grandparents celebrated 55 years of marriage before my grandfathers passed away. Until last week, all four of Julie&#8217;s grandparents were still living&#8230;and both sets were approaching 65 years of marriage. My parents&#8230;nearly 21 years before my dad passed away when I was 12. Julie&#8217;s parents&#8230;more than 35 years and going strong. Julie and I will hit 13 years in August. We are in really good company&#8230;and proof that marriage not only CAN work&#8230;it can work well. </p>
<p>Not all of those 300+ years of marriage were easy ones. Just speaking from my own experience, somewhere around years 7-9 were tough for Julie and I&#8230;mainly as a result of me working through some anger issues in my life. But during those rough times, Julie and I never considered bailing on the marriage. Our commitment to each other from the beginning was that our marriage is for life. That is the way that God designed it&#8230;I&#8217;m not going to argue with him about it. I committed that as long as Julie and I were alive, we are together. That commitment was to her, but more importantly, that commitment was made to God at our wedding. He is the one who prepared each of us for the other.</p>
<p>And what we have seen is that our relationship with each other just continues to grow stronger. The rough times have actually helped our relationship to deepen. No doubt that the rough times were not fun&#8230;they definitely were not. But without the conflict, our relationship would not be as strong as it is.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/284/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/284/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=284&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/07/07/marriage-legacy/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>
	</item>
		<item>
		<title>Interview with Wally Mead - Part 3 of 3</title>
		<link>http://verbalprocessor.com/2008/06/24/interview-with-wally-mead-part-3-of-3/</link>
		<comments>http://verbalprocessor.com/2008/06/24/interview-with-wally-mead-part-3-of-3/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 11:00:01 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/?p=280</guid>
		<description><![CDATA[Without further ado, here is the final part of the interview with Wally Mead. A lot of you have enjoyed this series, and I&#8217;ve been glad to be able to bring it to you. 
Be sure to check back soon for the next interview. I&#8217;m not sure which one will be next, but I&#8217;ve already lined up [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://None"><img class="alignright size-medium wp-image-266" src="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg?w=300&h=228" alt="" width="300" height="228" /></a>Without further ado, here is the final part of the interview with Wally Mead. A lot of you have enjoyed this series, and I&#8217;ve been glad to be able to bring it to you. </p>
<p>Be sure to check back soon for the next interview. I&#8217;m not sure which one will be next, but I&#8217;ve already lined up two guys in the SMS community that I know you won&#8217;t want to miss.</p>
<p>Yeah, that&#8217;s meant to be a teaser. It&#8217;s my blog&#8230;I can do that! :-)</p>
<p>So, enjoy Part 3 of the Wally interview and check back soon to find out who my next interview is going to be!</p>
<p><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=16777215&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fverbalprocess.files.wordpress.com%2F2008%2F06%2Fwally_part3.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/280/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/280/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=280&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/24/interview-with-wally-mead-part-3-of-3/feed/</wfw:commentRss>
<enclosure url="http://verbalprocess.files.wordpress.com/2008/06/wally_part3.mp3" length="4804354" type="audio/mpeg" />
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>

		<media:content url="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg?w=300" medium="image" />

		<media:content url="http://verbalprocess.files.wordpress.com/2008/06/wally_part3.mp3" medium="audio">
			<media:player url="http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf?soundFile=http://verbalprocess.files.wordpress.com/2008/06/wally_part3.mp3" />
		</media:content>
	</item>
		<item>
		<title>Fail Open Goat</title>
		<link>http://verbalprocessor.com/2008/06/20/fail-open-goat/</link>
		<comments>http://verbalprocessor.com/2008/06/20/fail-open-goat/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 13:02:57 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[comedy]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/06/20/fail-open-goat/</guid>
		<description><![CDATA[Yesterday Rod Trent linked to an article on Robert Hensing&#8217;s blog about a less than well researched article in USA Today about Firefox 3. When I went to the site, I saw Robert&#8217;s blog&#8217;s tag line&#8230;&#8221;Home of the &#8216;Fail Open Goat&#8217; Award&#8221;. That got me curious, so I searched his blog to find out what [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Yesterday Rod Trent <a href="http://myitforum.com/cs2/blogs/rtrent/archive/2008/06/18/the-ie-versus-ff-security-track-record.aspx" target="_blank">linked</a> to an <a href="http://blogs.technet.com/robert_hensing/archive/2008/06/18/usa-today-writes-an-article-about-ff-3-0-hilarity-ensues.aspx" target="_blank">article</a> on Robert Hensing&#8217;s blog about a less than well researched <a href="http://www.usatoday.com/tech/news/computersecurity/2008-06-17-mozilla-window-snyder_N.htm" target="_blank">article</a> in USA Today about Firefox 3. When I went to the site, I saw Robert&#8217;s blog&#8217;s tag line&#8230;&#8221;Home of the &#8216;Fail Open Goat&#8217; Award&#8221;. That got me curious, so I searched his blog to find out what it was about. That brought me to this <a href="http://blogs.technet.com/robert_hensing/archive/2008/04/01/fail-open-goats-the-new-lol-cats.aspx" target="_blank">page</a> on Robert&#8217;s blog.</p>
<p>There is a breed of goats called myotonic goats. They have a genetic abnormality that causes their muscles to lock up when they are frightened, startled, or excited. The effect it has is that their legs get stiff, and they typically fall over on their sides. They recover after a few seconds and everything is normal&#8230;until they are startled or excited again. It&#8217;s actually pretty funny to watch.</p>
<p>To quote Robert on his blog, &#8220;I call them &#8220;fail open goats&#8221; because, well, that&#8217;s what it reminds me of whenever I see one . . . a goat . . . failing . .. open.&#8221; He created the &#8220;Fail Open Goat&#8221; award to acknowledge instances of product security failure.</p>
<p>All last night and after waking up this morning, I am walking around chuckling at the phrase, &#8220;a goat&#8230;failing&#8230;open.&#8221; I just can&#8217;t stop laughing about it. So&#8230;watch the video below, and think about that phrase every time one falls over&#8230;especially when the entire herd falls over after having an umbrella waved at them. You just might start walking around muttering &#8220;a goat&#8230;failing&#8230;open&#8221;.</p>
<div>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:12925d8f-a357-4759-92f1-e236011a3c39" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">
<div><span style="text-align:center; display: block;"><a href="http://verbalprocessor.com/2008/06/20/fail-open-goat/"><img src="http://img.youtube.com/vi/we9_CdNPuJg/2.jpg" alt="" /></a></span><a href="http://www.youtube.com/watch?v=we9_CdNPuJg" target="_new"></a></div>
</div>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/279/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/279/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/279/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=279&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/20/fail-open-goat/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/we9_CdNPuJg/2.jpg" medium="image" />
	</item>
		<item>
		<title>MP not responding to HTTP requests - fixed</title>
		<link>http://verbalprocessor.com/2008/06/18/mp-not-responding-to-http-requests-fixed/</link>
		<comments>http://verbalprocessor.com/2008/06/18/mp-not-responding-to-http-requests-fixed/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 20:32:40 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[SCCM]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/06/18/mp-not-responding-to-http-requests-fixed/</guid>
		<description><![CDATA[I have been more than a bit annoyed with the MP on my SCCM server. I have SCCM SP1 running on Server 2008. It is also using a remote SQL server that is running on Server 2003 x64 edition. In looking at the component status, it shows up as a fat red X. Looking further [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have been more than a bit annoyed with the MP on my <a href="http://www.microsoft.com/systemcenter/configmgr/default.mspx" target="_blank">SCCM</a> server. I have <a href="http://verbalprocess.wordpress.com/2008/05/22/sccm-sp1-download-is-live-now/" target="_blank">SCCM SP1</a> running on Server 2008. It is also using a remote SQL server that is running on Server 2003 x64 edition. In looking at the component status, it shows up as a fat red X. Looking further in, the problem is on the SMS_MP_CONTROL_MANAGER component. Every 60 minutes I have a message that comes up in that component stating:<br />
<blockquote>
<p>MP Control Manager detected MP is not responding to HTTP requests.&nbsp; The http error is 12029.</p>
</blockquote>
<p><span id="more-277"></span>
<p>I was able to connect directly to the MP in my web browser by going to http://SCCMfqdn/SMS_MP/.sms_aut?MPLIST. When I do that, I get a list that includes the name of my MP. But I still have that pesky message. Then I took a look at the MPcontrol.log. It was full of error messages also&#8230;but this one gave me the clue to the problem. The messages repeat every five minutes, and they follow this pattern:<br />
<blockquote>
<p>Call to HttpSendRequestSync failed for port 12345 with an error code.</p>
<p>Http test request failed, error code is 12029.</p>
<p>Successfully performed Management Point availability check against local computer.</p>
</blockquote>
<p>That is the problem&#8230;it is attempting to connect on the custom port that I set up for client requests, but is failing. A quick check of trying to connect via http://SCCMfqdn:12345/SMS_MP/.sms_aut?MPLIST confirms it&#8230;it can&#8217;t connect. The root problem is that the Management Point availability check is attempting to connect to the MP over the custom port, but IIS doesn&#8217;t know what to do with requests that come in on that port.
<p>So&#8230;open up the IIS Manager, click on Sites, the right click on Default Web Site, and choose &#8220;Edit Bindings&#8230;&#8221;. Click &#8220;Add&#8230;&#8221; and enter the custom port information. Close everything out, and the MP is much happier&#8230;and so am I. The next time it does its availability check it comes through as:<br />
<blockquote>
<p>Call to HttpSendRequestSync succeeded for port 12345 with status code 200, text: OK<br />Http test request succeeded.<br />Successfully performed Management Point availability check against local computer.</p>
</blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/277/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/277/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/277/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=277&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/18/mp-not-responding-to-http-requests-fixed/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>
	</item>
		<item>
		<title>Interview with Wally Mead - Part 2 of 3</title>
		<link>http://verbalprocessor.com/2008/06/18/interview-with-wally-mead-part-2-of-3/</link>
		<comments>http://verbalprocessor.com/2008/06/18/interview-with-wally-mead-part-2-of-3/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 14:01:44 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[Jesus]]></category>

		<category><![CDATA[SCCM]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[relationships]]></category>

		<category><![CDATA[sports]]></category>

		<category><![CDATA[interviews]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/06/25/interview-with-wally-mead-part-2-of-3/</guid>
		<description><![CDATA[Here is part two of my interview with Wally Mead. This section is a bit shorter than the first one&#8230;in the flow of the questions this just seemed like the best place to break it up. I plan to post the third and final part of the interview next Tuesday, so be sure to check [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg"><img class="alignright size-medium wp-image-266" src="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg?w=300&h=228" alt="" width="300" height="228" /></a>Here is part two of my interview with Wally Mead. This section is a bit shorter than the <a href="/2008/06/13/interview-with-wally-mead-part-1/" target="_blank">first one</a>&#8230;in the flow of the questions this just seemed like the best place to break it up. I plan to post the third and final part of the interview next Tuesday, so be sure to check back for the final ten minutes.</p>
<p>My plan is to do some more of these personal type interviews, so I <a href="http://verbalprocess.wordpress.com/2008/06/16/who-would-you-like-to-see-interviewed/" target="_blank">posed a question</a> yesterday&#8230;who would you like to see interviewed? Joey started off a fantastic list of people. (He also emailed me offline saying that he would be impressed if I got his whole list&#8230;heck&#8230;I&#8217;ll be impressed if I get half of his list! Although I do already have one of those lined up!) I&#8217;d love to hear from you who you would like to know more about. So&#8230;<a href="http://verbalprocess.wordpress.com/2008/06/16/who-would-you-like-to-see-interviewed/" target="_blank">go to the post</a> and leave a comment voting for who you would like. If the person is already mentioned, feel free to throw in another vote for them.</p>
<p>But&#8230;without further rambling by me&#8230;heeeeeeeerree&#8217;sss Wally!</p>
<p><span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=16777215&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fverbalprocess.files.wordpress.com%2F2008%2F06%2Fwally_part2.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/274/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/274/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/274/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/274/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/274/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=274&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/18/interview-with-wally-mead-part-2-of-3/feed/</wfw:commentRss>
<enclosure url="http://verbalprocess.files.wordpress.com/2008/06/wally_part2.mp3" length="4026741" type="audio/mpeg" />
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>

		<media:content url="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg?w=300" medium="image" />

		<media:content url="http://verbalprocess.files.wordpress.com/2008/06/wally_part2.mp3" medium="audio">
			<media:player url="http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf?soundFile=http://verbalprocess.files.wordpress.com/2008/06/wally_part2.mp3" />
		</media:content>
	</item>
		<item>
		<title>SCCM SP1 and Itanium - NOT supported</title>
		<link>http://verbalprocessor.com/2008/06/17/sccm-sp1-and-itanium-not-supported/</link>
		<comments>http://verbalprocessor.com/2008/06/17/sccm-sp1-and-itanium-not-supported/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 16:40:02 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[SCCM]]></category>

		<category><![CDATA[Itanium]]></category>

		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/06/17/sccm-sp1-and-itanium-not-supported/</guid>
		<description><![CDATA[Back in October 2007 when I was doing my original Pilot deployment of SCCM (RTM), I posted on the TechNet forums asking questions about whether putting the site database on a SQL cluster that was running on the Itanium (IA64) architecture was a supported installation scenario. Stan White replied back that both clustered as well [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Back in October 2007 when I was doing my original Pilot deployment of SCCM (RTM), I <a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=2229239&amp;SiteID=17" target="_blank">posted</a> on the TechNet forums asking questions about whether putting the site database on a SQL cluster that was running on the Itanium (IA64) architecture was a supported installation scenario. Stan White replied back that both clustered as well as Itanium were supported. After installing, everything was working fine&#8230;no problems worth mentioning.</p>
<p>Fast forward seven months. I&#8217;m in the midst of my <a href="/2008/05/18/sccm-reinstall-take-3/">SCCM rebuild</a>. I&#8217;m doing so on Server 2008 and SCCM SP1. Everything appeared to be working except that the SMS_SITE_SQL_BACKUP component refused to install on the SQL server. In the sitecomp.log file was the following message (only three lines out of a couple of hundred log entries):</p>
<p><span id="more-271"></span>
</p>
<blockquote><p>Server&#8217;s platform type is X86</p>
<p>&#8230;</p>
<p>Could not get entry point file name from SMS installation map.</p>
<p>Installation failed and will be retried in the next polling cycle</p>
</blockquote>
<p>This repeated every 60 minutes, but would never install. The fact that it saw the platform as x86 instead of IA64 was an immediate red flag. After <a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=3497987&amp;SiteID=17&amp;mode=1" target="_blank">posting</a> this scenario (with complete log files) on the TechNet forum, I waited. And waited. And cross posted. And finally got a response this morning. Turns out that they had to do a bit of research to find the answer. Here is the answer from Jeff Nordrum (one of the Microsoft moderators on the forum):</p>
<blockquote><p>Sorry for the slow response. We needed to investigate this issue a little more thoroughly before responding. Back in August 2006, we quietly dropped official support for the SQL role on the 64 bit Itanium platform for Configuration Manager 2007. However, ConfigMgr 2007 SQL role still worked on IA64 (including SMS_SITE_SQL_BACKUP). For the development of ConfigMgr 2007 SP1, in order to support Windows 2008 64-bit, new code for SQL Backup was needed. This new code was not implemented on IA64 since it was officially not supported.
<p>&nbsp;
<p>We apologize for the lack of clear documentation and the misunderstanding regarding what we support on IA64. We&#8217;ll get our online documentation updated as soon as possible. Moving forward, we don&#8217;t plan to include support for the SQL role on the IA64 platform for SP1 or any future releases of Configuration Manager.</p>
</blockquote>
<p>So&#8230;it turns out that when I installed in October 2007, that I was in fact installing on a non-supported setup. It just didn&#8217;t come back to bite me until SP1 was released in late May. From what I&#8217;ve been told, our Itanium SQL servers are nearing end of life and are needing to be replaced, so this will be some extra motivation for us to make that happen sooner rather than later. In the meantime, I need to find another SQL box so that I can move my SCCM database.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/271/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/271/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/271/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=271&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/17/sccm-sp1-and-itanium-not-supported/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>
	</item>
		<item>
		<title>Who would you like to see interviewed?</title>
		<link>http://verbalprocessor.com/2008/06/16/who-would-you-like-to-see-interviewed/</link>
		<comments>http://verbalprocessor.com/2008/06/16/who-would-you-like-to-see-interviewed/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 00:53:57 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[SCCM]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[interviews]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/2008/06/16/who-would-you-like-to-see-interviewed/</guid>
		<description><![CDATA[Based solely on the number of hits that the Wally Mead interview has gotten, I would say that the SMS/SCCM community has a fair amount of interest in getting to know more about some of the people that we see on the forums or presenting at conferences. So&#8230;who would you like to see interviewed? 
Leave [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Based solely on the number of hits that the <a href="/2008/06/13/interview-with-wally-mead-part-1/">Wally Mead interview</a> has gotten, I would say that the SMS/SCCM community has a fair amount of interest in getting to know more about some of the people that we see on the forums or presenting at conferences. So&#8230;who would you like to see interviewed? </p>
<p>Leave a comment below to let me know who you&#8217;d like to hear from. If someone has already mentioned someone that you are interested in, leave a comment anyway&#8230;let it be like adding a vote. Don&#8217;t know if I will be able to make an interview happen with those that you are interested in hearing from, but I&#8217;ll do my best. Just give me ideas of who you are interested in getting to know.</p>
<p>Oh yeah, I will be working on cleaning up the second part of the Wally interview and hopefully posting it later this week. Check back to hear it&#8230;or subscribe to my <a href="/feed/">RSS feed</a> to be automatically alerted.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/270/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/270/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/270/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=270&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/16/who-would-you-like-to-see-interviewed/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>
	</item>
		<item>
		<title>Interview with Wally Mead - Part 1</title>
		<link>http://verbalprocessor.com/2008/06/13/interview-with-wally-mead-part-1/</link>
		<comments>http://verbalprocessor.com/2008/06/13/interview-with-wally-mead-part-1/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 19:15:50 +0000</pubDate>
		<dc:creator>Jarvis</dc:creator>
		
		<category><![CDATA[Jesus]]></category>

		<category><![CDATA[SCCM]]></category>

		<category><![CDATA[kids]]></category>

		<category><![CDATA[life]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[sports]]></category>

		<guid isPermaLink="false">http://verbalprocess.wordpress.com/?p=265</guid>
		<description><![CDATA[Over the last several months I&#8217;ve developed a relationship with Wally Mead. Wally is a Senior Program Manager at Microsoft where he works with the System Center Configuration Manager product team. He handled a bug report that I submitted about SCCM (here and here&#8230;bug was fixed in SP1) and we connected offline afterwards. He had seen in the bug [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignright size-medium wp-image-266" src="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg?w=300&h=228" alt="" width="300" height="228" />Over the last several months I&#8217;ve developed a relationship with Wally Mead. Wally is a Senior Program Manager at Microsoft where he works with the System Center Configuration Manager product team. He handled a bug report that I submitted about SCCM (<a href="/2008/02/01/sccm-sql-cluster-problem/" target="_self">here</a> and <a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=2792509&amp;SiteID=17&amp;mode=1" target="_blank">here</a>&#8230;bug was fixed in SP1) and we connected offline afterwards. He had seen in the bug submission that I work for <a href="/ministry/" target="_self">Campus Crusade for Christ</a>, and he has had interaction with CCC in the past.</p>
<p>This week Wally has been in Orlando at <a href="http://www.microsoft.com/events/teched2008/itpro/default.mspx" target="_blank">Tech-Ed</a>, so I invited him to come out and let me take him on a tour of CCC&#8217;s <a href="http://www.lakehart.org/" target="_blank">headquarters</a>. After the tour we sat down and Wally allowed me to interview him. Below is the first portion of the interview. I will post parts 2 and 3 sometime next week.</p>
<p>I&#8217;d like to also offer a public thank you to Wally for taking the time to sit down with me. It was a very enjoyable time, and if Chris ends up coming to <a href="http://ucf.edu/" target="_blank">UCF</a>, I look forward to seeing you more often!</p>
<p>Another thing&#8230;<a href="/2008/06/16/who-would-you-like-to-see-interviewed/" target="_blank">who else</a> would you like to see interviewed? Let me know on that page and I&#8217;ll see what I can do.</p>
<p>Enjoy!<br />
<span style='text-align:left;display:block;'><p><object type='application/x-shockwave-flash' data='http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf' width='290' height='24' id='audioplayer1'><param name='movie' value='http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf' /><param name='FlashVars' value='&amp;bg=0xf8f8f8&amp;leftbg=0xeeeeee&amp;lefticon=0x666666&amp;rightbg=0xcccccc&amp;rightbghover=0x999999&amp;righticon=0x666666&amp;righticonhover=0xffffff&amp;text=0x666666&amp;slider=0x666666&amp;track=16777215&amp;border=0x666666&amp;loader=0x9FFFB8&amp;soundFile=http%3A%2F%2Fverbalprocess.files.wordpress.com%2F2008%2F06%2Fwally_part1.mp3' /><param name='quality' value='high' /><param name='menu' value='false' /><param name='bgcolor' value='#FFFFFF' /></object></p></span></p>
<p><a href="/2008/06/18/interview-with-wally-mead-part-2-of-3/">Part 2</a> of the interview is live now&#8230;</p>
<p>[<strong>Update 6-22-08</strong>: It was brought to my attention in the comments below that if you don't have the Adobe Flash Plugin on your computer, you will not see the audio player that is just below the "Enjoy!" line. You can get it <a href="http://www.adobe.com/go/getflashplayer" target="_blank">here</a> if you don't already have it.]</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/verbalprocess.wordpress.com/265/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/verbalprocess.wordpress.com/265/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/verbalprocess.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/verbalprocess.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/verbalprocess.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/verbalprocess.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/verbalprocess.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/verbalprocess.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/verbalprocess.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/verbalprocess.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/verbalprocess.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/verbalprocess.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=verbalprocessor.com&blog=1611123&post=265&subd=verbalprocess&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://verbalprocessor.com/2008/06/13/interview-with-wally-mead-part-1/feed/</wfw:commentRss>
<enclosure url="http://verbalprocess.files.wordpress.com/2008/06/wally_part1.mp3" length="6434186" type="audio/mpeg" />
	
		<media:content url="http://a.wordpress.com/avatar/jarvisdavis-128.jpg" medium="image">
			<media:title type="html">Jarvis</media:title>
		</media:content>

		<media:content url="http://verbalprocess.files.wordpress.com/2008/06/wallymead.jpg?w=300" medium="image" />

		<media:content url="http://verbalprocess.files.wordpress.com/2008/06/wally_part1.mp3" medium="audio">
			<media:player url="http://verbalprocessor.com/wp-content/plugins/audio-player/player.swf?soundFile=http://verbalprocess.files.wordpress.com/2008/06/wally_part1.mp3" />
		</media:content>
	</item>
	</channel>
</rss>