<?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>Business and Information Technology Tangents</title>
	<atom:link href="http://bittangents.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bittangents.com</link>
	<description>Business and Information Technology Tangents is dedicated to providing quality content while informing the world about technology.</description>
	<lastBuildDate>Mon, 08 Mar 2010 22:18:43 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='bittangents.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d1a1b7257eb43a08a4e680f999fa35ac?s=96&#038;d=http://s2.wp.com/i/buttonw-com.png</url>
		<title>Business and Information Technology Tangents</title>
		<link>http://bittangents.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bittangents.com/osd.xml" title="Business and Information Technology Tangents" />
	<atom:link rel='hub' href='http://bittangents.com/?pushpress=hub'/>
		<item>
		<title>PowerShell Script: Finding A Distinguished Name of a Group/User: Function Find-DN</title>
		<link>http://bittangents.com/2010/03/08/powershell-script-finding-a-distinguished-name-of-a-groupuser-function-find-dn/</link>
		<comments>http://bittangents.com/2010/03/08/powershell-script-finding-a-distinguished-name-of-a-groupuser-function-find-dn/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 22:18:43 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2010/03/08/powershell-script-finding-a-distinguished-name-of-a-groupuser-function-find-dn/</guid>
		<description><![CDATA[By: Brenton Blawat
This article explains the the method by which one would be able to Search Active Directory for the distinguished name of a User or Group. This is helpful when trying to add an object to Active Directory or adding Users to Groups.
Function Find-DN Finding Distinguished Name: Download PS1 Here


   1: # [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=465&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p>This article explains the the method by which one would be able to Search Active Directory for the distinguished name of a User or Group. This is helpful when trying to add an object to Active Directory or adding Users to Groups.</p>
<p><strong>Function Find-DN Finding Distinguished Name:</strong> <a href="http://www.brentblawat.com/blog/codesnippets/find-dn.ps1"><strong>Download PS1 Here</strong></a></p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#008000;"># Function Find Distinguished Name</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> <span style="color:#0000ff;">function</span> find-dn { <span style="color:#0000ff;">param</span>([string]$adfindtype, [string]$cName)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>     <span style="color:#008000;"># Create A New ADSI Call</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>     $root = [ADSI]<span style="color:#006080;">''</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>     <span style="color:#008000;"># Create a New DirectorySearcher Object</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>     $searcher = new-object System.DirectoryServices.DirectorySearcher($root)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span>     <span style="color:#008000;"># Set the filter to search for a specific CNAME</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum8">   8:</span>     $searcher.<span style="color:#0000ff;">filter</span> = <span style="color:#006080;">&quot;(&amp;(objectClass=$adfindtype) (CN=$cName))&quot;</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum9">   9:</span>     <span style="color:#008000;"># Set results in $adfind variable</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum10">  10:</span>     $adfind = $searcher.findall()</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum11">  11:</span>     </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum12">  12:</span>     <span style="color:#008000;"># If Search has Multiple Answers </span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum13">  13:</span>     <span style="color:#0000ff;">if</span> ($adfind.count <span style="color:#cc6633;">-gt</span> 1) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum14">  14:</span>         $count = 0 </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum15">  15:</span>         <span style="color:#0000ff;">foreach</span>($i <span style="color:#0000ff;">in</span> $adfind)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum16">  16:</span>         {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum17">  17:</span>             <span style="color:#008000;"># Write Answers On Screen</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum18">  18:</span>             write-host $count <span style="color:#006080;">&quot;: &quot;</span> $i.path</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum19">  19:</span>             $count += 1</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum20">  20:</span>         }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum21">  21:</span>         <span style="color:#008000;"># Prompt User For Selection</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum22">  22:</span>         $selection = Read-Host <span style="color:#006080;">&quot;Please select item: &quot;</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum23">  23:</span>         <span style="color:#008000;"># Return the Selection</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum24">  24:</span>         <span style="color:#0000ff;">return</span> $adfind[$selection].path</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum25">  25:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum26">  26:</span>     <span style="color:#008000;"># Return The Answer</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum27">  27:</span>     <span style="color:#0000ff;">return</span> $adfind[0].path</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum28">  28:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p><strong>Using this Function:</strong></p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#008000;"># To use the function to find a User:</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> find-dn <span style="color:#006080;">&quot;user&quot;</span> <span style="color:#006080;">&quot;Blawat&quot;</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span> <span style="color:#008000;"># To use the function to find a Group:</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span> find-dn <span style="color:#006080;">&quot;group&quot;</span> <span style="color:#006080;">&quot;IT Help Desk&quot;</span></pre>
<p><!--CRLF--></div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/465/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/465/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/465/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=465&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2010/03/08/powershell-script-finding-a-distinguished-name-of-a-groupuser-function-find-dn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>
	</item>
		<item>
		<title>2010 Volkswagen CC Review &#8211; A test Drive Bashing</title>
		<link>http://bittangents.com/2010/02/23/2010-volkswagen-cc-review-a-test-drive-bashing/</link>
		<comments>http://bittangents.com/2010/02/23/2010-volkswagen-cc-review-a-test-drive-bashing/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:53:48 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Car Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2010/02/23/2010-volkswagen-cc-review-a-test-drive-bashing/</guid>
		<description><![CDATA[By: Brenton Blawat
This article is the first of many car reviews for 2009/2010 vehicles. I chose the Volkswagen CC as the first review as it was the most intriguing to write about out of the 20 or so vehicles I was able to test drive.
 
2010 Volkswagen CC&#160;
In an effort to raise the ‘class’ bar [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=456&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p>This article is the first of many car reviews for 2009/2010 vehicles. I chose the Volkswagen CC as the first review as it was the most intriguing to write about out of the 20 or so vehicles I was able to test drive.</p>
<p><a href="http://brentblawat.files.wordpress.com/2010/02/cc09scr_3qtr_performance_800x600.jpg"><img style="display:inline;border-width:0;" title="cc09scr_3qtr_performance_800x600" border="0" alt="cc09scr_3qtr_performance_800x600" src="http://brentblawat.files.wordpress.com/2010/02/cc09scr_3qtr_performance_800x600_thumb.jpg?w=370&#038;h=278" width="370" height="278" /></a> </p>
<p><strong>2010 Volkswagen CC</strong>&#160;</p>
<p>In an effort to raise the ‘class’ bar for VW, the Volkswagen created the Passat CC to replace standard VW Passat. At a first glance, you see a <a href="http://www.mercedes-amg.com/?lang=usa#/cls63-overview">Mercedes CLS-class</a> but after closer inspection, you realize the branding on the front is Volkswagen. This immediately intrigued me, and a test drive was in the works for the vehicle. After the test drive, I thought, with such sleek exterior styling, how did they get it so wrong?!!</p>
<p><strong></strong></p>
<p><strong>Interior – Is it really that Luxurious?</strong></p>
<p><a href="http://brentblawat.files.wordpress.com/2010/02/cc10scr_steeringwheel_800x600.jpg"><img style="display:inline;border-width:0;" title="cc10scr_steeringwheel_800x600" border="0" alt="cc10scr_steeringwheel_800x600" src="http://brentblawat.files.wordpress.com/2010/02/cc10scr_steeringwheel_800x600_thumb.jpg?w=384&#038;h=289" width="384" height="289" /></a> <a href="http://brentblawat.files.wordpress.com/2010/02/pas10scr_steeringwheel_i01_800x600.jpg"><img style="display:inline;border-width:0;" title="pas10scr_steeringWheel_i01_800x600" border="0" alt="pas10scr_steeringWheel_i01_800x600" src="http://brentblawat.files.wordpress.com/2010/02/pas10scr_steeringwheel_i01_800x600_thumb.jpg?w=386&#038;h=290" width="386" height="290" /></a> </p>
<p><strong>Can anyone tell me which vehicle is the CC and which is the Passat?</strong></p>
<p>With interior reminiscent of its Passat predecessor, I was really hoping for more. The dashboard gauges and steering wheels are exactly the same, while the shifter and the seats are slightly different. To answer my question above, the image on the [left] is the Passat CC and the Image on the [right] is the Standard Passat. Scary how close the interiors are.</p>
<p>Why is this such a big deal? The Washington Times raved the Passat CC as having “classy-looking interior”. The new slogan speaks of luxury – but is it really? The stereo is touch screen, however, it is a bit scary to use/learn in heavy traffic. I still don’t like the cylindrical shifter. It really forces me to stay away from playing in sport mode. While I can admit that the CC’s seats are comfortable, I get very close to the same support in the Passat. The rear seat has a cup holder as part of the seat making the vehicle a true four seat vehicle (no cramming kids in the back). My second concern with this center console is hauling any items in the back seat such as a TV (one which wouldn’t fit in the opening of the trunk). I would be afraid of cracking the plastic on the cover, or damaging the TV.</p>
<p>The ride is what I would expect from a German car with low road noise and it passes the door closing test. <em>The door closing test is one where when you shut your door it is a solid thud. It shouldn’t have any radiating vibrations or rattles coming from inside the door or in the cabin.</em> While the frame and chassis of the vehicle are solid, the interior still needs some major work to make you feel like you are in a luxury car.</p>
<p>Performance? Nothing new… nothing real exciting. They still have the same 2.0T and VR6 engines.</p>
<p><strong>How did they miss the mark?</strong></p>
<p>The first gripe I have with the Volkswagen CC has to do with the 2.0 liter turbocharged automatic. The dual clutch system (DCS) in the vehicle gives the feeling that you are consistently missing the gear at take-off, and during mid-gear acceleration (like the Lancer Rally Sport). While the salesman insisted it was the turbo lag – any seasoned turbo driver (such as myself) &#8211; knows that it’s the gear not engaging smoothly in the vehicle. <em>To know the difference &#8212; turbo lag dips the RPM prior to an explosive take-off. The feeling you will get is that you are riding the clutch before it engages. The result is feeling like you are going to break the transmission when driving it. </em>The throttle response is thus affected, and takes the fun out of driving the vehicle. When switching to the VR6 version of the VW CC, you’re immediately engaged and the engine grunt makes you feel – this is cool. The numerous <a href="http://www.vwforum.com/forums/f14/common-vr6-problems-16379/">reported issues</a> with the VR6 engines require a second thought which purchasing the vehicle for engine longevity over 90k. Any salesman that states that the engine issues have been fixed, is just feeding you a line.</p>
<p>The second gripe I have with the Volkswagen CC has to do with the headroom – more appropriately the sunroof-headroom-ish-thingy (aka S.H.I.T.). While the manufacturer calls the feature a sunroof -&#160; it really isn’t by normal standards &#8211; its top vent. The sunroof doesn’t retract it only pops open to provide added cabin sunlight and ventilation. If you get a VW without the sunroof, your headroom is decreased by several inches and any six foot man would start to get a claustrophobic feeling inside the cabin. Also to mention, during the test drive, I was fortunate to have a friend with me, and she confirmed (with her being 5’9”) she felt as if the roof was collapsing on her as well. It seems anyone over 5’8” requires the sunroof which is only available on the luxury package &#8211; another “really??” moment. </p>
<p>Even if I were to overlook the $33,880 starting price tag for the luxury package (for which I can get a All Wheel Drive 2010 BMW 3 series with better residual), my two grips are immediate deal breakers when purchasing the vehicle. </p>
<p><strong>End Result:</strong> EPIC FAILURE.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/456/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/456/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/456/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=456&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2010/02/23/2010-volkswagen-cc-review-a-test-drive-bashing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/cc09scr_3qtr_performance_800x600_thumb.jpg" medium="image">
			<media:title type="html">cc09scr_3qtr_performance_800x600</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/cc10scr_steeringwheel_800x600_thumb.jpg" medium="image">
			<media:title type="html">cc10scr_steeringwheel_800x600</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/pas10scr_steeringwheel_i01_800x600_thumb.jpg" medium="image">
			<media:title type="html">pas10scr_steeringWheel_i01_800x600</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerShell Script: Retrieving Distinguished name (DN) from A Fully Qualified Domain Name (FQDN)</title>
		<link>http://bittangents.com/2010/02/22/powershell-script-retrieving-distinguished-name-dn-from-a-fully-qualified-domain-name-fqdn/</link>
		<comments>http://bittangents.com/2010/02/22/powershell-script-retrieving-distinguished-name-dn-from-a-fully-qualified-domain-name-fqdn/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 19:49:40 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Powershell Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2010/02/22/powershell-script-retrieving-distinguished-name-dn-from-a-fully-qualified-domain-name-fqdn/</guid>
		<description><![CDATA[By: Brenton Blawat
While there are many posts that describe the code to do this function, there aren’t many posts that provide variables with meaning or actually describe the syntax. This post describes the method by which you can retrieve a Distinguished Name from a Fully Qualified Domain Name. 
Quick Reference: 
Fully Qualified Domain Name (FQDN): [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=444&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p>While there are many posts that describe the code to do this function, there aren’t many posts that provide variables with meaning or actually describe the syntax. This post describes the method by which you can retrieve a Distinguished Name from a Fully Qualified Domain Name. </p>
<p><u>Quick Reference:</u> </p>
<p>Fully Qualified Domain Name (FQDN): division.domain.root</p>
<p>Distinguished Name (DC): DC=division,DC=Domain,DC=root</p>
<p>Canonical Name(CN): division.domain.root/OrganizationalUnit/</p>
<p>If you are looking for a quick way to obtain a Distinguished Name or Fully Qualified Domain Name <a href="http://brentblawat.wordpress.com/2010/02/22/powershell-script-distinguished-name-fully-qualified-domain-name-to-string/">See this article.</a></p>
<p>&#160;</p>
<h2>Mr. Weaver’s Code</h2>
<p>Mark A. Weaver’s post <a href="http://vmweaver.com/index.php/2009/08/powershell-recursive-group-membership/">Powershell – Recursive Group Membership</a>, he describes the methods by which you can convert to and from multiple variables. Here is how Mr. Weaver performs the conversion operation:</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.86%;font-family:&#39;direction:ltr;height:210px;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#0000ff;">function</span> Convert-DNStoDN ($DNSName)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>    <span style="color:#008000;">#  Create an array of each item in the string separated by &quot;.&quot;</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>    $DNSArray = $DNSName.Split(<span style="color:#006080;">&quot;.&quot;</span>)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>   <span style="color:#008000;"># Let's go through our new array and do something with each item</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>    <span style="color:#0000ff;">for</span> ($x = 0; $x <span style="color:#cc6633;">-lt</span> $DNSArray.Length ; $x++)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span>       {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum8">   8:</span>         <span style="color:#008000;">#I don't want a comma after my last item, so check to see if I am on my last one and set</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum9">   9:</span>         <span style="color:#008000;"># $Separator equal to nothing.</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum10">  10:</span>         <span style="color:#008000;"># Remember that we need to go to Length-1 because arrays are &quot;0 based indexes&quot;</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum11">  11:</span>          <span style="color:#0000ff;">if</span> ($x <span style="color:#cc6633;">-eq</span> ($DNSArray.Length - 1)){$Separator = <span style="color:#006080;">&quot;&quot;</span>}<span style="color:#0000ff;">else</span>{$Separator =<span style="color:#006080;">&quot;,&quot;</span>}</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum12">  12:</span>          [string]$DN += <span style="color:#006080;">&quot;DC=&quot;</span> + $DNSArray[$x] + $Separator</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum13">  13:</span>       }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum14">  14:</span>    <span style="color:#0000ff;">return</span> $DN</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum15">  15:</span> }</pre>
<p><!--CRLF--></div>
</div>
<h2>My Code &#8211; Explained</h2>
<p>While my code is almost identical to Mr. Weaver’s Code, my only criticism is not providing useful variables and describing the functions. I can state, however, Mr. Weaver’s code provided a platform for a function that I use in a large production environment. I took the liberty to optimize the code (slightly) to meet my needs (Thank you sir!).</p>
<p><strong>My Function looks like: <a href="http://www.brentblawat.com/blog/codesnippets/FQDN_DN.PS1">Download PS1 Here</a></strong></p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;height:172px;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#0000ff;">function</span> Get-Domain {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span>     </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>     <span style="color:#008000;">#Retrieve the Fully Qualified Domain Name if one is not supplied</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum4">   4:</span>     <span style="color:#008000;"># division.domain.root</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum5">   5:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum6">   6:</span>     <span style="color:#0000ff;">if</span> ($FQDN <span style="color:#cc6633;">-eq</span> <span style="color:#006080;">&quot;&quot;</span>) {</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum7">   7:</span>         [String]$fqdn = [System.DirectoryServices.ActiveDirectory.Domain]::getcurrentdomain()</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum8">   8:</span>     }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum9">   9:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum10">  10:</span>     <span style="color:#008000;"># Create a New Array 'Item' for each item in between the '.' characters</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum11">  11:</span>     <span style="color:#008000;"># Arrayitem1 division</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum12">  12:</span>     <span style="color:#008000;"># Arrayitem2 domain</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum13">  13:</span>     <span style="color:#008000;"># Arrayitem3 root</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum14">  14:</span>     $FQDNArray = $FQDN.split(<span style="color:#006080;">&quot;.&quot;</span>)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum15">  15:</span>     </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum16">  16:</span>     <span style="color:#008000;"># Add A Separator of ','</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum17">  17:</span>     $Separator = <span style="color:#006080;">&quot;,&quot;</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum18">  18:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum19">  19:</span>     <span style="color:#008000;"># For Each Item in the Array</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum20">  20:</span>     <span style="color:#008000;"># for (CreateVar; Condition; RepeatAction)</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum21">  21:</span>     <span style="color:#008000;"># for ($x is now equal to 0; while $x is less than total array length; add 1 to X</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum22">  22:</span>     <span style="color:#0000ff;">for</span> ($x = 0; $x <span style="color:#cc6633;">-lt</span> $FQDNArray.Length ; $x++)</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum23">  23:</span>         { </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum24">  24:</span>&#160; </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum25">  25:</span>         <span style="color:#008000;">#If it's the last item in the array don't append a ','</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum26">  26:</span>         <span style="color:#0000ff;">if</span> ($x <span style="color:#cc6633;">-eq</span> ($FQDNArray.Length - 1)) { $Separator = <span style="color:#006080;">&quot;&quot;</span> }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum27">  27:</span>         </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum28">  28:</span>         <span style="color:#008000;"># Append to $DN DC= plus the array item with a separator after</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum29">  29:</span>         [string]$DN += <span style="color:#006080;">&quot;DC=&quot;</span> + $FQDNArray[$x] + $Separator</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum30">  30:</span>         </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum31">  31:</span>         <span style="color:#008000;"># continue to next item in the array</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum32">  32:</span>         }</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum33">  33:</span>     </pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum34">  34:</span>     <span style="color:#008000;">#return the Distinguished Name</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum35">  35:</span>     <span style="color:#0000ff;">return</span> $DN</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum36">  36:</span> }</pre>
<p><!--CRLF--></div>
</div>
<p><strong>To use the Function </strong>to get the Distinguished Name of the Domain:</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.33%;font-family:&#39;direction:ltr;height:39px;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#008000;"># Store the distinguished name in a variable named $objCrntDN.</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> $objCrntDN = Get-Domain</pre>
<p><!--CRLF--></div>
</div>
<p><strong>To use the function </strong>to get the Distinguished Name From a Fully Qualified Domain Name:</p>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.1%;font-family:&#39;direction:ltr;height:79px;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#008000;"># Store the distinguished name in a variable named $objCrntDN</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> <span style="color:#008000;"># Pass the Fully Qualified Domain Name with call</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span> $objCrntDN = Get-Domain division.domain.root </pre>
<p><!--CRLF--></div>
</div>
<p><strong>Note: </strong>This function also works if you place the division.domain.root in parentheses with quotations:</p>
<p><strong>Get-Domain(“division.domain.root”)</strong></p>
<h2>&#160;</h2>
<h2>What’s Different??</h2>
<p>While the output is basically the same, I’ve made a few changes in the code:</p>
<ol>
<li>“DNSname” is technically inaccurate, while I understand what he is meaning. He is referring to is the FQDN – a point of confusion for the readers. </li>
<li>I made the passing of a FQDN (optional) – as sometimes we don’t need to determine the FQDN (outside the function) before we get the Distinguished Name. </li>
<li>I named my function ‘Get-Domain’ . DNS-DN is a very specific function. Your will see that Marc has to call three different functions to convert between each of these. I chose to make a single function, and establish what the ultimate output will be. Name the function what you are getting or creating with the function. Get-Domain –&gt; You already know what the output will be &#8212; the Domain. </li>
<li>I removed the <em>Else { $separator }</em> out of the loop. In batch processing such as PowerShell, the interpreter will replace the $separator variable each time it passes through the loop for the items in the array. To make the code more efficient, I set the variable outside the loop as it only gets changed for the last array evaluation.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/444/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=444&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2010/02/22/powershell-script-retrieving-distinguished-name-dn-from-a-fully-qualified-domain-name-fqdn/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerShell Script: Distinguished Name / Fully Qualified Domain Name to string</title>
		<link>http://bittangents.com/2010/02/22/powershell-script-distinguished-name-fully-qualified-domain-name-to-string/</link>
		<comments>http://bittangents.com/2010/02/22/powershell-script-distinguished-name-fully-qualified-domain-name-to-string/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 19:39:24 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Powershell Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2010/02/22/powershell-script-distinguished-name-fully-qualified-domain-name-to-string/</guid>
		<description><![CDATA[
By: Brenton Blawat
This article is designed to be short and sweet. This article displays the method by which one would retrieve the FQDN or Distinguished Name of the Domain. This is code is very useful for any operations in Active Directory. A must know for any scripter that needs to call the domain on a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=443&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[</p>
<p><strong>By: Brenton Blawat</strong></p>
<p>This article is designed to be short and sweet. This article displays the method by which one would retrieve the FQDN or Distinguished Name of the Domain. This is code is very useful for any operations in Active Directory. A must know for any scripter that needs to call the domain on a system without hard coding the value in the script.</p>
<p>Lets take a theoretical network that consists of ‘division’ subdomain, ‘domain’ as the domain, and ‘root’ as the domain root.</p>
<h2>Root Distinguished name &#8211; Easy Method in PowerShell</h2>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;height:68px;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#008000;"># Instantiate The ADSI Provider</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> $root = [ADSI]<span style="color:#006080;">''</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span> $CurrentDN = $root.DistinguishedName</pre>
<p><!--CRLF--></div>
</div>
<p><strong>Result:</strong> </p>
<p>The variable $CurrentDN will contain:</p>
<p>DN=division,DN=domain,DN=local</p>
<h2>Root Fully Qualified Domain Name (FQDN) – Easy Method In PowerShell</h2>
<div style="border-bottom:silver 1px solid;text-align:left;border-left:silver 1px solid;line-height:12pt;background-color:#f4f4f4;width:97.5%;font-family:&#39;direction:ltr;height:67px;max-height:200px;font-size:8pt;overflow:auto;border-top:silver 1px solid;cursor:text;border-right:silver 1px solid;margin:20px 0 10px;padding:4px;" id="codeSnippetWrapper">
<div style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;padding:0;" id="codeSnippet">
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum1">   1:</span> <span style="color:#008000;"># Retrieve the Fully Qualified Domain Name and store it in $FQDN Variable</span></pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:#f4f4f4;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum2">   2:</span> [String]$FQDN =  [System.DirectoryServices.ActiveDirectory.Domain]::getCurrentDomain()</pre>
<p><!--CRLF--></p>
<pre style="text-align:left;line-height:12pt;background-color:white;width:100%;font-family:&#39;direction:ltr;color:black;font-size:8pt;overflow:visible;border-style:none;margin:0;padding:0;"><span style="color:#606060;" id="lnum3">   3:</span>&#160; </pre>
<p><!--CRLF--></div>
</div>
<p><strong>Result:</strong> </p>
<p>The variable $FQDN will contain:</p>
<p>division.domain.local</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/443/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/443/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/443/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=443&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2010/02/22/powershell-script-distinguished-name-fully-qualified-domain-name-to-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>
	</item>
		<item>
		<title>Default Domain Policies Windows Server 2003 SP2 / Windows server 2008 R2</title>
		<link>http://bittangents.com/2010/02/03/default-domain-policies-windows-server-2003-sp2-windows-server-2008-r2/</link>
		<comments>http://bittangents.com/2010/02/03/default-domain-policies-windows-server-2003-sp2-windows-server-2008-r2/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:59:43 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Server Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2010/02/03/default-domain-policies-windows-server-2003-sp2-windows-server-2008-r2/</guid>
		<description><![CDATA[By: Brenton Blawat
What would seem like a quick reference item to find on Google, seems to have been lost in the billions of web pages. This article is intended as a quick reference to what the Default Domain Policies are for Windows Server 2003 SP2 and Windows Server 2008 R2. Please note that while some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=440&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p>What would seem like a quick reference item to find on Google, seems to have been lost in the billions of web pages. This article is intended as a quick reference to what the Default Domain Policies are for Windows Server 2003 SP2 and Windows Server 2008 R2. Please note that while some of the policies appear to be identical, the hierarchical structure behind the policies are different.</p>
<p><strong>Default Domain Policies: Windows Server 2003 SP2</strong></p>
<p>+ Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Account Policies &gt; Password Policy</p>
<blockquote><p>- Enforce Password History = 24 Passwords</p>
<p>- Maximum Password Age = 42 Days</p>
<p>- Minimum Password Age = 1 Days</p>
<p>- Minimum Password Length = 7 Characters</p>
<p>- Password must meet complexity requirements = Enabled</p>
<p>- Store Passwords using reversible encryption = Disabled</p>
</blockquote>
<p>+ Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Account Policies &gt; Account Lockout Policy</p>
<blockquote><p>- Account lockout threshold = 0 invalid logon attempts</p>
</blockquote>
<p>+ Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Account Policies &gt; Kerberos Policy</p>
<blockquote><p>- Enforce user logon restrictions = Enabled</p>
<p>- Maximum lifetime for service ticket = 600 minutes</p>
<p>- Maximum lifetime for user ticket = 10 hours</p>
<p>- Maximum lifetime for user ticket renewal = 7 days</p>
<p>- Maximum tolerance for computer clock synchronization = 5 minutes</p>
</blockquote>
<p>+ Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Local Policies &gt; Security Options</p>
<blockquote><p>- Network Security: Force Logoff when logon hours expire = Disabled</p>
</blockquote>
<p>+ Computer Configuration &gt; Windows Settings &gt; Security Settings &gt; Public Key Policies &gt; Encrypting File System</p>
<blockquote><p>- Administrator Issued File Recovery Certificate</p>
</blockquote>
<p>+ User Settings &gt; Windows Settings &gt; Security Settings &gt; Public Key Policies &gt; Autoenrollment Settings</p>
<blockquote><p>- Enroll Certificates Automatically</p>
</blockquote>
<p>&#160;</p>
<p><strong>Default Domain Policies: Windows Server 2008 R2 64-bit</strong></p>
<p>+ Computer Configuration &gt; Policies &gt; Windows Settings &gt; Security Settings &gt; Account Policies &gt; Password Policy</p>
<blockquote><p>- Enforce Password History = 24 Passwords</p>
<p>- Maximum Password Age = 42 Days</p>
<p>- Minimum Password Age = 1 Days</p>
<p>- Minimum Password Length = 7 Characters</p>
<p>- Password must meet complexity requirements = Enabled</p>
<p>- Store Passwords using reversible encryption = Disabled</p>
</blockquote>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Account Policies &gt; Account Lockout Policy</p>
<blockquote><p>- Account lockout threshold = 0 invalid logon attempts</p>
</blockquote>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Account Policies &gt; Kerberos Policy</p>
<blockquote><p>- Enforce user logon restrictions = Enabled</p>
<p>- Maximum lifetime for service ticket = 600 minutes</p>
<p>- Maximum lifetime for user ticket = 10 hours</p>
<p>- Maximum lifetime for user ticket renewal = 7 days</p>
<p>- Maximum tolerance for computer clock synchronization = 5 minutes</p>
</blockquote>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Local Policies &gt; Security Options</p>
<blockquote><p>- Network access: Allow anonymous SID/Name translation = Disabled</p>
<p>- Network security: Do not store LAN Manager hash value on next password change = Enabled</p>
<p>- Network Security: Force Logoff when logon hours expire = Disabled</p>
</blockquote>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Public Key Policies &gt; Encrypting File System</p>
<blockquote><p>- Administrator Issued File Recovery Certificate</p>
</blockquote>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Public Key Policies &gt; Trusted Root Certification Authorities</p>
<blockquote><p>- Allow users to select new root certification authorities (CAs) to trust = Enable</p>
<p>- Client computers can trust the following certificate stores = Third-Party Root Certification Authorities and Enterprise Root Certification Authorities</p>
<p>- To perform certificate-based authentication of users and computers, CAs must meet the criteria = Registered in Active Directory only</p>
</blockquote>
<p>&#160;</p>
<h1>Default Domain Policy Differences: Windows Server 2003 / Windows Server 2008</h1>
<p><strong>Default Domain Policies added to Windows Server 2008</strong></p>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Local Policies &gt; Security Options</p>
<blockquote><p>- Network access: Allow anonymous SID/Name translation = Disabled</p>
<p>- Network security: Do not store LAN Manager hash value on next password change = Enabled</p>
</blockquote>
<p>+ Computer Configuration &gt; Policy &gt; Windows Settings &gt; Security Settings &gt; Public Key Policies &gt; Trusted Root Certification Authorities</p>
<blockquote><p>- Allow users to select new root certification authorities (CAs) to trust = Enable</p>
<p>- Client computers can trust the following certificate stores = Third-Party Root Certification Authorities and Enterprise Root Certification Authorities</p>
<p>- To perform certificate-based authentication of users and computers, CAs must meet the criteria = Registered in Active Directory only</p>
</blockquote>
<p><strong>Removed from Windows Server 2008</strong></p>
<p>+ User Settings &gt; Windows Settings &gt; Security Settings &gt; Public Key Policies &gt; Autoenrollment Settings</p>
<blockquote><p>- Autoenrollment Settings: Enroll Certificates Automatically</p>
</blockquote>
<p><strong></strong></p>
<p><strong>** </strong>NOTE: All re-productions / digital copies of this content must be approved in writing by an authorized representative of BIT Tangents.**</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/440/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=440&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2010/02/03/default-domain-policies-windows-server-2003-sp2-windows-server-2008-r2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>
	</item>
		<item>
		<title>2008 BMW 335XI &#8211; Fuel Delivery Lemon Story (Part 2)</title>
		<link>http://bittangents.com/2010/02/01/2008-bmw-335xi-fuel-delivery-lemon-story-part-2-2/</link>
		<comments>http://bittangents.com/2010/02/01/2008-bmw-335xi-fuel-delivery-lemon-story-part-2-2/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 20:35:49 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Car Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2010/02/01/2008-bmw-335xi-fuel-delivery-lemon-story-part-2-2/</guid>
		<description><![CDATA[By: Brenton Blawat
Part 1 – Lemon Law Over / Issue Logs
Part 2 – Contacting the Dealer / Manufacturer – UPDATED!
I apologize for taking so long to get this article posted to the internet. It has taken since January 23, 2009 till to June 2009 to come to a final resolution with BMW of North America. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=430&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p><a href="http://brentblawat.wordpress.com/2009/01/24/2008-bmw-335xi-fuel-delivery-lemon-story/"><strong>Part 1 – Lemon Law Over / Issue Logs</strong></a></p>
<p><strong>Part 2 – Contacting the Dealer / Manufacturer – UPDATED!</strong></p>
<p>I apologize for taking so long to get this article posted to the internet. It has taken since January 23, 2009 till to June 2009 to come to a final resolution with BMW of North America. I am writing this article as a guide on how you can approach your dealership to assist you PRIOR to claiming a lemon on a vehicle to get a peaceful resolution.</p>
<p><strong>Two IMPORTANT things to know:</strong></p>
<p>1. Your dealership is NOT liable for any portion of vehicle failing when you purchase or lease a BRAND NEW vehicle. – This means that barging into your dealership demanding for a new vehicle <strong><span style="text-decoration:underline;">won’t</span></strong> work. In fact, according to lemon law, your dispute is between the car manufacturer and yourself. – Be kind to your local dealer; they DON’T have to help you.</p>
<p>2. BMW is only obligated to follow the State and Federal lemon laws. Additional damages are typically not granted to anyone pursuing the lemon law. Claiming you will sue the dealership for thousands of dollars for lost time will get you no where but out the door. Stay calm and collected and the dealership will assist you.</p>
<h3>Success! A FAIR resolution.</h3>
<p><a href="http://brentblawat.files.wordpress.com/2010/02/msport.jpg"><img style="display:inline;border-width:0;" title="msport" src="http://brentblawat.files.wordpress.com/2010/02/msport_thumb.jpg?w=492&#038;h=268" border="0" alt="msport" width="492" height="268" /></a></p>
<p>First, a special <strong>THANK YOU</strong>, goes out to <strong>Dan Jansen</strong> of <strong>International Autos</strong> for being patient with my relentless calls on the delivery of my new vehicle. Without Dan’s assistance and understanding, I would not have been able to receive my substitution of collateral. Thank you again!</p>
<p><strong>1. Keeping Records</strong></p>
<p>As shown in my earlier post, I had to keep all of the paperwork for the repairs on my vehicle. While having an issue occur 5 times, is annoying, you have to remember BMW is great at providing a replacement vehicle while you vehicle is in the shop. Keep the records so that you can prove your case to the BMW of North America. It’s about the BMW doing the right thing; not that you’ve been inconvenienced.</p>
<p><strong>2. Contacting the Sales Manager at Local Dealership.</strong></p>
<p>The first step is contacting the Sales Manager at the local dealership. Tell them you have been having problems with your vehicle and are interested in performing a substitution of collateral. <em>A substitution of collateral is basically a vehicle exchange. In a substitution of collateral, BMW of North America will buy back your current vehicle and trade it out for a different vehicle on the lot. This also works for leased vehicles (such as in my case). The difference in cost of the vehicles will be charged charged to you. However, I was charged the DEALERSHIP COST difference versus the MSRP cost difference. This saved me over $3,500.00 by having the dealership extend their costs to me.</em></p>
<p>The Sales Manager will be required to contact the service manager; but keeping the sales manager as your point person will help tremendously.</p>
<p><strong>3. Service Manager Sign-</strong><strong>off</strong></p>
<p>The service manger is required to review your service records to see if the reoccurring issue has to do with the same problem. The KEY component is to remain focused on the actual LEMON Law verbiage with the service manager. While the service manager may say I replaced different components each time the law states: <em>“The dealer failed four times to fix the same defect;”. </em>The “defects” by law are generic; not physical components. (EG Car will not maintain idle on start)<br />
The service manager will sign off on the substitution of collateral and it will be passed back to the Sales Manager.</p>
<p><strong>4. Regional BMW Representative Sign-off</strong></p>
<p>In order for BMW of North America to accept the substitution of collateral, the regional BMW Representative is required to sign off on the contract. In most cases if the Sales Manager and the Service Manager sign-off on the collateral, the sign-off from the Regional BMW Representative just becomes a formality.</p>
<p>Once the Regional BMW Representative Signs-off the substitution of collateral paperwork is complete and the physical delivery of the vehicle can be performed.</p>
<p><strong>5. (Optional) Upgrades</strong></p>
<p>In 2009, BMW released a 335 with a “M Sport Package” that I opted to purchase. I purchased this upgrade at dealership cost with Paddle Shifters and a few other extras to completely trick out the vehicle.</p>
<p>If you are NOT interested in upgrading the vehicle, the dealership can provide you either:</p>
<p>a) a new vehicle off of their lot.</p>
<p>b) a new vehicle to be manufactured in Germany.</p>
<p>Since I upgraded the vehicle with a package that was not available yet, I chose “Option B” and it took an extra 60 days to deliver the substitution of collateral.</p>
<p><strong>6. End Result</strong></p>
<p><a href="http://brentblawat.files.wordpress.com/2010/02/img5.jpg"><img style="display:inline;border-width:0;" title="IMG5" src="http://brentblawat.files.wordpress.com/2010/02/img5_thumb.jpg?w=244&#038;h=184" border="0" alt="IMG5" width="244" height="184" /></a> <a href="http://brentblawat.files.wordpress.com/2010/02/img7.jpg"><img style="display:inline;border-width:0;" title="img7" src="http://brentblawat.files.wordpress.com/2010/02/img7_thumb.jpg?w=244&#038;h=184" border="0" alt="img7" width="244" height="184" /></a> <a href="http://brentblawat.files.wordpress.com/2010/02/img4.jpg"><img style="display:inline;border-width:0;" title="img4" src="http://brentblawat.files.wordpress.com/2010/02/img4_thumb.jpg?w=244&#038;h=184" border="0" alt="img4" width="244" height="184" /></a></p>
<p>BMW of North America agreed continue my existing lease with a New 2009 BMW 335i X-Drive. This means that I got a 0 mile vehicle 1 year into my lease and my residual payout for the 2009 BMW 335i X-Drive is at the cost of a 2008 BMW 335XI. A GREAT DEAL, and completely FAIR to me. I still have my 45,000 miles to use in the remaining two years.</p>
<p>If anyone needs more details I’ll be more than happy to assist you.</p>
<h1>FEB.1.2010 Update &gt;:(</h1>
<p>Thank you for the continued reading and comments on this blog posting. I have made a new 2010 resolution to update this blog article as well blogging more articles.</p>
<p><strong>First Item To Address: Wheel and Tire / Dent and Ding Warranty Transfer </strong></p>
<p>To my <strong>GREAT </strong>disappointment, the warranty that BMW promoted as part of the 2008 BMW 3 Series didn’t carry over to the 2009. This is a result of BMW now offering their own extended service warranty. I so happened to get a bulge the right rear passenger tire and after it was replaced on my dime, I got a nail in the side wall of the same side tire. Both tires costing me in excess of $600.00. Lesson learned – <strong>BUY THE NEW BMW WARRANTY!!!!!</strong></p>
<p><strong>Second Item To Address: The 2009 BMW 335 High Pressure Fuel Pump Issue – Strikes AGAIN</strong></p>
<p>After about 11,000 miles and being out 400 miles of town, the High Pressure Fuel Pump issue strikes again. This time around, however, I was was traveling at a sustained 80 MPH on the interstate when it felt as if my transmission went on the vehicle. After pulling over, stopping the car, and starting it again, the car would function for 50 miles where I would then have to ‘rinse and repeat’ until I made it to the BMW Dealership. Not a pleasant experience.</p>
<p><strong>Third Item To Address: Awesome Readers and Leaving Comments. </strong></p>
<p>I appreciate everyone that has kept this blog #1 for BMW HPFP Issues. Here are my direct responses to my readers:</p>
<p>Kurt:</p>
<blockquote><p>“The dealers offer nothing regardless. Like most owners, the legal pursuits was the only option. I was cool until I hit 50 DAYS in the shop. Nobody listened.”</p>
<p>Kurt – Sorry to hear of your issues. As frustrating as this can be, try a different dealership. Remember that the dealership is not responsible for a faulty vehicle. It is only responsible to fix the vehicle under the manufacturer warranty. Even then a dealership as a right to turn you away with – we can’t figure it out. Issues like the HPFP are difficult to troubleshoot. There are stories of injectors and injector rings being replaced to fix this issue when the issue is just a HPFP. I hope everything turns out for the best.</p></blockquote>
<p>Nicole:</p>
<blockquote><p>“.. i just bought a 2008 bmw 328xi”</p>
<p>Nicole – It is my understanding that the HPFP is only available on the Twin Turbo Engines in the 135, 335, 535, and X6. It sounds like you might be having a different issue.</p></blockquote>
<p>Dan T:</p>
<blockquote><p>“ 1. What does bmw do for used purchase under warranty? Usually lemon law is for new.<br />
  2. With no fault codes, shoudl I be concerned? Why would such a costly car just go dead at a stop?<br />
  3. I heard software for turbos needs updated, I have v27.2 and heard v30 improved performance, heard anything? ”</p>
<p>Dan T –</p>
<p>1. The Lemon Law in Wisconsin also allows for vehicle to be used as long as its under the first year of the warranty. There are other protections like Magnuson-Moss Warranty Act that provide protections for used vehicles.</p>
<p>2. Imagine the car cutting out in the middle of an intersection with a semi-truck (or train) coming full-speed in cross traffic. With no fault codes – absolutely should still be concerned for your safety.  The High Pressure Fuel Pump delivers fuel to the engine in the 3000 PSI range. If a turbo spins up and not enough fuel is being delivered, the car will die.</p>
<p>3. Performance may be better, however, BMW will never admit that. BMW rates the 3 series at 300HP which is borderline for high performance in insurance ratings. To keep the insurance ratings low, the vehicle is rated at 300 HP, while the engine is capable of producing well over 380HP with a tuner (Burger Motorsports JuiceBox+ or Dinan Chip). I hear the PnP JuiceBox+ is well worth the money; but very much voids the warranty.</p></blockquote>
<p>Dave:</p>
<blockquote><p>“ Purchased a new 2009 335 CI in August which had been running flawlessly until yesterday (6300 mi). The car started up normally, but stalled out when I put it in reverse and fuel pump sensor light came on as well as check engine light. Towed to the dealer and I was given a 335 loaner. Final diagnosis is pending, but I expect the same problem with the HPFP. Disappointing. Maybe the Cayman S next time for me. Appreciate the info… “</p>
<p>Bimmer to a Cayman S – you should be ashamed of yourself <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   On a serious note, a 335xi with the Burger Motorsports Juicebox+ at the stock setting will SMOKE a Cayman S. You have to remember the 335i is a 3.0 liter Twin Turbo and gets full horsepower and torque at 3000 RPM. The Cayman S is a 3.4I displacing 320HP at 7200RPM. Yes, the problems with the 335 are disappointing, but when my car is working, I wouldn’t trade it for any vehicle on the road (well maybe the new <a href="http://www.audiusa.com/us/brand/en/models/a4_sedan.html">Audi S4</a>).</p>
<p>If you get the 2010 Cayman S, please feel free to provide your feedback on the vehicle – I’d love to hear it.</p></blockquote>
<p> </p>
<p><strong>Thanks again to everyone and safe driving!</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/430/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=430&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2010/02/01/2008-bmw-335xi-fuel-delivery-lemon-story-part-2-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/msport_thumb.jpg" medium="image">
			<media:title type="html">msport</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/img5_thumb.jpg" medium="image">
			<media:title type="html">IMG5</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/img7_thumb.jpg" medium="image">
			<media:title type="html">img7</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2010/02/img4_thumb.jpg" medium="image">
			<media:title type="html">img4</media:title>
		</media:content>
	</item>
		<item>
		<title>Basic How to Guide for the Symbol (Motorola) PPT-8846</title>
		<link>http://bittangents.com/2009/02/03/basic-how-to-guide-for-the-symbol-motorola-ppt-8846/</link>
		<comments>http://bittangents.com/2009/02/03/basic-how-to-guide-for-the-symbol-motorola-ppt-8846/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 21:09:38 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Hardware Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2009/02/03/basic-how-to-guide-for-the-symbol-motorola-ppt-8846/</guid>
		<description><![CDATA[By: Brenton Blawat
While most of this article may seem somewhat trivial, I have found that there are many Users that don’t know how to warm/soft boot and cold/hard boot the handhelds. 
Below is a quick reference guide:
How to Change the Battery in a Symbol (Motorola) PPT-8846
&#160;
&#160;
How to Warm / Soft Boot a Symbol (Motorola) PPT-8846
&#160;
&#160;
How [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=396&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p>While most of this article may seem somewhat trivial, I have found that there are many Users that don’t know how to warm/soft boot and cold/hard boot the handhelds. </p>
<p>Below is a quick reference guide:</p>
<h3>How to Change the Battery in a Symbol (Motorola) PPT-8846</h3>
<p><a href="http://brentblawat.files.wordpress.com/2009/02/image.png"><img title="image" style="display:inline;border-width:0;" height="349" alt="image" src="http://brentblawat.files.wordpress.com/2009/02/image-thumb.png?w=792&#038;h=349" width="792" border="0" /></a>&#160;</p>
<p>&#160;</p>
<h3>How to Warm / Soft Boot a Symbol (Motorola) PPT-8846</h3>
<p><a href="http://brentblawat.files.wordpress.com/2009/02/howtowarmboot.jpg"><img title="HowToWarmBoot" style="display:inline;border-width:0;" height="383" alt="HowToWarmBoot" src="http://brentblawat.files.wordpress.com/2009/02/howtowarmboot-thumb.jpg?w=789&#038;h=383" width="789" border="0" /></a>&#160;</p>
<p>&#160;</p>
<h3>How to Cold / Hard Boot a Symbol (Motorola) PPT-8846</h3>
<p><a href="http://brentblawat.files.wordpress.com/2009/02/howtocoldboot.jpg"><img title="HowToColdBoot" style="display:inline;border-width:0;" height="284" alt="HowToColdBoot" src="http://brentblawat.files.wordpress.com/2009/02/howtocoldboot-thumb.jpg?w=795&#038;h=284" width="795" border="0" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/396/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/396/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=396&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2009/02/03/basic-how-to-guide-for-the-symbol-motorola-ppt-8846/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/02/image-thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/02/howtowarmboot-thumb.jpg" medium="image">
			<media:title type="html">HowToWarmBoot</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/02/howtocoldboot-thumb.jpg" medium="image">
			<media:title type="html">HowToColdBoot</media:title>
		</media:content>
	</item>
		<item>
		<title>2008 BMW 335XI &#8211; Fuel Delivery Lemon Story</title>
		<link>http://bittangents.com/2009/01/24/2008-bmw-335xi-fuel-delivery-lemon-story/</link>
		<comments>http://bittangents.com/2009/01/24/2008-bmw-335xi-fuel-delivery-lemon-story/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 02:17:43 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Car Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2009/01/24/2008-bmw-335xi-fuel-delivery-lemon-story/</guid>
		<description><![CDATA[By: Brenton Blawat
Part 1 – Lemon Law Over / Issue Logs
Part 2 – Contacting the Dealer / Manufacturer – UPDATED!!
 

Friday, January 23rd, 2009 – Yes, this is my car. Yes that is a construction cone in front of it (a perverted joke my associate was playing on me). Probably not as surprising as the dunce [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=376&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p><strong>By: Brenton Blawat</strong></p>
<p><strong>Part 1 – Lemon Law Over / Issue Logs</strong></p>
<p><strong><a href="http://bittangents.com/2010/02/01/2008-bmw-335xi-fuel-delivery-lemon-story-part-2-2/">Part 2 – Contacting the Dealer / Manufacturer</a> – UPDATED!!</strong></p>
<p><strong> </strong></p>
<p><a href="http://brentblawat.files.wordpress.com/2009/01/sany0902.jpg"><img style="display:inline;margin-left:0;margin-right:0;border-width:0;" title="SANY0902" src="http://brentblawat.files.wordpress.com/2009/01/sany0902-thumb.jpg?w=465&#038;h=350" border="0" alt="SANY0902" width="465" height="350" align="right" /></a></p>
<p><strong>Friday, January 23rd, 2009 – </strong>Yes, this is my car. Yes that is a construction cone in front of it (a perverted joke my associate was playing on me). Probably not as surprising as the dunce code my associate found on his vehicle after I left the Hotel (shown below; yes that is me hiding behind the car!).</p>
<p><a href="http://brentblawat.files.wordpress.com/2009/01/sany0903.jpg"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="SANY0903" src="http://brentblawat.files.wordpress.com/2009/01/sany0903-thumb.jpg?w=201&#038;h=152" border="0" alt="SANY0903" width="201" height="152" /></a></p>
<p>Perhaps my associate’s joke provided certitude to the troubles that I was going to have with my new <a href="http://autos.aol.com/cars-BMW-335-2008/overview">2008 BMW 335XI</a>?</p>
<p>Let me be frank about my car. I LOVE IT! It’s fast, sporty, handles like a dream, and is everything I would want in a vehicle. It came fully loaded from the dealership and has every little gadget that makes this geek completely satisfied for the lease term. I have no regrets on purchasing this vehicle and up to this point, I’ve been extremely impressed by BMW’s responsiveness to my issues.</p>
<p>I am writing this to allow the community to follow me through my journey to claiming my vehicle through the <a href="http://www.dot.wisconsin.gov/safety/consumer/rights/lemonlaw.htm">Wisconsin Lemon Laws</a>. I will be updating this article throughout this process. It will be interesting to see the progression of my frustration (hopefully lack there of) and have my experience serve as a guide for others.</p>
<h3>Lemon Law Statutes</h3>
<p>According to the Wisconsin Lemon Laws the following must be satisfied:</p>
<table border="0" cellspacing="0" cellpadding="2" width="837">
<tbody>
<tr>
<td width="33" valign="top">X</td>
<td width="557" valign="top">You bought or leased a new vehicle.</td>
<td width="245" valign="top">New Lease on May 3, 2008</td>
</tr>
<tr>
<td width="33" valign="top">X</td>
<td width="557" valign="top">The vehicle is a car, truck, motorcycle or motor home.</td>
<td width="245" valign="top">Vehicle is a Car</td>
</tr>
<tr>
<td width="33" valign="top">X</td>
<td width="557" valign="top">The vehicle developed a defect or defects during its first year and before the warranty expired.</td>
<td width="245" valign="top">See Service Details Below. All in First Year.</td>
</tr>
<tr>
<td width="33" valign="top"> </td>
<td width="557" valign="top">One of the following happened during the vehicle&#8217;s first year and before the warranty expired:</td>
<td width="245" valign="top">One of the following did happen:</td>
</tr>
<tr>
<td width="33" valign="top">X</td>
<td width="557" valign="top">The dealer failed four times to fix the same defect;</td>
<td width="245" valign="top">Car has been at the dealer 5 times since the purchase date for Fuel Delivery Issues.</td>
</tr>
<tr>
<td width="33" valign="top"> </td>
<td width="557" valign="top">OR</td>
<td width="245" valign="top"> </td>
</tr>
<tr>
<td width="33" valign="top">18</td>
<td width="557" valign="top">The vehicle was out of service for 30 days or more due to defects.</td>
<td width="245" valign="top">Only has been in the shop for 18 Days.</td>
</tr>
</tbody>
</table>
<p><strong> </strong></p>
<h3><strong>It’s a Lemon What’s Next?</strong></h3>
<p>According to the department of transportation for Wisconsin they strongly suggest completing the Formal Wisconsin Paperwork for the issues.</p>
<p><a title="http://www.dot.wisconsin.gov/safety/consumer/forms/llfrm700.pdf" href="http://www.dot.wisconsin.gov/safety/consumer/forms/llfrm700.pdf">http://www.dot.wisconsin.gov/safety/consumer/forms/llfrm700.pdf</a></p>
<p>Completed Paperwork: <strong>Friday, January 23rd, 2008 </strong></p>
<p>Filed Paperwork: <strong>(To Be Determined)</strong></p>
<p>They also suggest reporting the Lemon through pre-established programs in the state of Wisconsin (AKA WisDot Certified Program).</p>
<p><a href="http://www.dr.bbb.org/autoline/index.asp"><strong>BBB Auto Line</strong></a></p>
<p>(<strong>Certified for:</strong> Audi, Ford, Lincoln, Mercury, Hyundai, Isuzu, Kia, Mazda, Volkswagen)<br />
(<strong>Non-certified for:</strong> Acura, AM General, General Motors (including Saturn and Saab), Geo, Honda, Infiniti, Nissan, Subaru)</p>
<p><strong>National Center for Dispute Settlement</strong></p>
<p>(<strong>Certified for: </strong>Porsche)<br />
(<strong>Non-certified for:</strong> Lexus, Toyota, Mitsubishi, Suzuki)</p>
<p><strong> </strong></p>
<p><strong>Do you see my problem yet?</strong> There are no WisDOT Certified (or non Certified) Programs for BMW owners to dispute their vehicles. This might be an interesting bottleneck.</p>
<p><strong><span style="text-decoration:underline;">Verbiage in the Owner Manual – Lemon Law</span></strong></p>
<p><strong>Book:</strong> Service and Warranty Information</p>
<p><strong>Information: </strong></p>
<p>©2007 BMW of North America, LLC</p>
<p>Woodcliff Lake, New Jersey 07677</p>
<p><strong>Printed:</strong> Printed in U.S.A. 07/07</p>
<p><strong>Quote:</strong></p>
<blockquote><p>“<strong>Customer Assistance – Notification</strong></p>
<p>During a specific period (for example, the earlier of 12 months or 12,000 miles, though this period varies by state), some states require us or our authorized BMW center, to repair in a reasonable number of attempts, any defect or condition which substantially impairs the use, value, or safety of a new vehicle sold, leased or registered in that state.</p>
<p>A reasonable number of attempts is generally defined as (i) four or more attempts to repair the same defect (the number of attempts vary by state) or (ii) the vehicle is out of service by reason of one or more repair(s) for more than a cumulative total of 30 days (this period varies by state), except for delays created by conditions beyond our control.</p>
<p>If we are unable to correct a defect or condition covered by these statutes in a reasonable number of attempts, we may be obligated either to replace the vehicle or reimburse the owner/lessee in an amount equal to the purchase price or lease payments paid by the owner/lessee, less the amount direct attributable to use of the vehicle by the owner/lessee.</p>
<p>You should send written notification directly to BMW of North America, LLC of the existence of an alleged defect. Send written communication to the Customer Relations and Services Department address listed below.</p>
<p>BMW of North America, LLC</p>
<p>Customer Relations and Services Department</p>
<p>P.O. Box 1227</p>
<p>Westwood, New Jersey 07675-1117</p>
<p>Telephone: 1 800 831-1117 “</p></blockquote>
<p>&#8211; OK so first problem. The State of Wisconsin mentions it is a good idea to send the Lemon form via certified mail. In the United States you cannot send certified mail to a P.O. Box. Tricky BMW. After a little research:</p>
<p><a href="http://www.bmwusa.com/Standard/Content/CompanyInformation/">http://www.bmwusa.com/Standard/Content/CompanyInformation/</a></p>
<p>BMW of North America, LLC<br />
300 Chestnut Ridge Road<br />
Woodcliff Lake, NJ 07675</p>
<p><strong> </strong></p>
<h3>The Birth Of  A New Baby BMW – AKA The Problem Child</h3>
<p><a href="http://brentblawat.files.wordpress.com/2009/01/n691181521-1293914-7601.jpg"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="n691181521_1293914_760" src="http://brentblawat.files.wordpress.com/2009/01/n691181521-1293914-760-thumb1.jpg?w=627&#038;h=471" border="0" alt="n691181521_1293914_760" width="627" height="471" /></a></p>
<p><strong>January 2, 2008 –</strong> My BMW was created.</p>
<p><strong>May 3rd, 2008 – </strong></p>
<p>I became a proud owner of a 2008 BMW 335XI. I purchased this vehicle from <a href="http://www.international-autos.com/">International Autos</a> located at 2400 South 108th St., Milwaukee, WI 53227. If you are looking for a new BMW, Audi, Mini, or Mercedes, I strongly suggest talking with <a href="http://www.linkedin.com/pub/0/717/445">Jay Sheik</a>. While I had a bad experience with this car, Jay has made this experience worth while. You can read my review of my experience with <a href="http://www.linkedin.com/pub/0/717/445">Mr. Sheik at his linked in profile</a>. Its definitely not his fault that my car was a Lemon.</p>
<p><strong>1. June 9th, 2008 – 1,175 Miles</strong></p>
<p><span style="text-decoration:underline;">Symptoms:</span> Car was having problems starting in my garage. The car would not drive nicely from the line in ‘D’ and was running rough. I also received the Engine Malfunction, Reduced Power Message. The crank time on the car was anywhere from 5 – 10 seconds. Problem started just after the vehicle turned 1,000.</p>
<p><span style="text-decoration:underline;">Loaners: </span>Car was delivered to International Auto’s BMW Service Center and received an <a href="http://www.bmwusa.com/Standard/Content/vehicles/2009/x3/xDrive30i/default.aspx">2008</a> BMW 328XI loaner vehicle.</p>
<p><span style="text-decoration:underline;">Results (verbatim):</span> FUEL PUMP FAILURE 6199000 3 0000555 2 133159 4 1351517 17 TROUBLESHOOTING USING GT-1, VERIFY FAULT STORED IN DME (2FBF-FUEL PRESSURE RELEASE LOW), PERFORM DIAGNOSIS USING GT-1 TEST B1214_DI6KHDR AND B1214_DI6KNDR (CHECKIGN LOW AND HIGH PRESSURE TESTS RESPECTFULLY) FOUND HIGH PRESSURE FUEL PUMP FAULTY. REMOVE INTAKE MANIFOED AND ASSOC PARTS, REPALCE FUEL PUMP, RE-INSTALL AND RECHECK FOR FAULTS (0) RECHECK OK. CLEAR FAULTS AND RESET IDLE ADAPTATIONS. PRIOR TO DIAG, PER SIB#12-55-06, HOOK UP TO SSS AND VERIFY SOFTWARE STATUS BY STARTING PROGMAN(VERSION OF DATA UPDATED OK) CHARGE BATTERY.</p>
<p><span style="text-decoration:underline;">Final Verdict:</span> Fuel Delivery System</p>
<p><span style="text-decoration:underline;">Return Date</span><strong><span style="text-decoration:underline;">:</span> </strong>June 13th, 2008</p>
<p><span style="text-decoration:underline;">Days:</span> 4 Days</p>
<p><strong>2. June 18th, 2008 – 2,588 Miles</strong></p>
<p><span style="text-decoration:underline;">Symptoms: </span>Car was having problems starting in my garage. The car would not drive nicely from the line in ‘D’ and was running rough. I also received the Engine Malfunction, Reduced Power Message. Vehicle would die while idle or slow which posed a safety hazard in intersections.</p>
<p><span style="text-decoration:underline;">Loaners:</span> Car was delivered to International Auto’s BMW Service Center and did not receive a loaner vehicle.</p>
<p><span style="text-decoration:underline;">Results (verbatim):</span> 2588 FAULTY PRESSURE PUMP 0000005 4 1351518 17 CHECKED FAULTS FOUND FCS FOR TOO LOW FUEL PRESURE RAN TESTPANS PER SI_125506. TEST PLAN PROMPTED FOR REPLACEMENT OF HIGH PRESSURE PUMP REPLACED PUMP.</p>
<p><span style="text-decoration:underline;">Final Verdict:</span> Fuel Delivery System</p>
<p><span style="text-decoration:underline;">Return Date:</span> June 20th, 2008</p>
<p><span style="text-decoration:underline;">Days:</span> 2 Days</p>
<p><strong>3. January 10, 2009 – 18,025 Miles </strong></p>
<p><span style="text-decoration:underline;">Symptoms</span>: My car felt like I was dragging thousands of pounds of weight behind the vehicle. The car would not idle nicely, and eventually died when at idle. It also felt as if the transmission was going to blow up when driving.</p>
<p><span style="text-decoration:underline;">Loaners: </span>Car was delivered to International Auto’s BMW Service Center and received an <a href="http://www.bmwusa.com/Standard/Content/vehicles/2009/x3/xDrive30i/default.aspx">2009 BMW X3</a> loaner vehicle.</p>
<p><span style="text-decoration:underline;">Results (verbatim):</span> 18025 FUEL RAIL PRESURE READING WRONG 0000005 .40 1331529 .40 1353596 .40 CHECK FOR FAULT CODES FOUND 4 FAULTS FOR FUEL PRESURE PERFORMED PRESURE TEST ON SYSTEM PER TEST PLAN FOR FAULTS FOUND FUEL RAIL SENSOR READING LOW REPLACED SENSOR CLEARED CODES</p>
<p><span style="text-decoration:underline;">Final Verdict:</span> Fuel Delivery System</p>
<p><span style="text-decoration:underline;">Return Date:</span> January 14, 2009</p>
<p><span style="text-decoration:underline;">Days:</span>  4 Days</p>
<p> <strong>4. January 20, 2009 – 18,696 Miles</strong></p>
<p><strong><a href="http://brentblawat.files.wordpress.com/2009/01/beauty.jpg"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="Beauty" src="http://brentblawat.files.wordpress.com/2009/01/beauty-thumb.jpg?w=565&#038;h=425" border="0" alt="Beauty" width="565" height="425" /></a></strong>(When I was bored waiting for the Tow I decided to take a picture of my dash before the car died)<strong> </strong></p>
<p><span style="text-decoration:underline;">Symptoms:</span> (again) My car felt like I was dragging thousands of pounds of weight behind the vehicle. The car would not idle nicely, and eventually died when at idle. It also felt as if the transmission was going to blow up when driving. Vehicle would die while idle or slow which posed a safety hazard in intersections.</p>
<p>I also received the Engine Malfunction, Reduced power message. Also saw the above picture full of colorful lights on my dash. (But not merely as colorful as the words going through my head at the time.)</p>
<p><span style="text-decoration:underline;">Loaners: </span>Car was delivered to <a href="http://www.patrickcars.com/index.htm">Patrick BMW</a> Service Center and received an <a href="http://www.jeep.com/en/2008/wrangler/index.html">2009 Jeep Wrangler</a> loaner vehicle.</p>
<p><span style="text-decoration:underline;">Results (verbatim):</span> 18705 HIGH PRESSURE FUEL PUMP ENGINE BARELY RUNNING AND RUNNING ROUGH PERFORM SHORT TEST. FOUND MULTPLOE FAULTS SOTRED FOR FUEL PUMP SYSTEMS, CYLINDER INJECTION CUTOUT, AND MISFIRE DETECTION. DW TIME PUCNHED FOR CONTINUED DIAGNOSIS. PROCEED WITH TEST MODULE AND CHECK LOW PUMP PRESSURE AND SENSOR AT 6 BAR OK. NO FAULT FOUND IN LOW PSI SYSTEM DIAGCODE: D1330_B0000000_05_901. PROCEED AND CHECK HIGH PRESSURE FUEL SYSTEM CHECK PRESSURE OF RAIL PRESSURE SENSOR OK CHEKC PRESSUR AT IDLES PEED AT RAIL PRESSURE SENSEOR ACTUAL PRESSURE 147.2 BAR TARGET PRESSURE 50BAR. CHECKED PRESSURE AGAIN AND PRESSURE WAS OK. INTERNAL PUMP FAILURE. REPLACE HIGH PRESSURE FUEL PUMP</p>
<p>DIAGCODE: d1350_0000000_02_001. CLEAR FAULT MEMORY AND ADAPTATIONS THEN TEST DRIVE. CAR STARING AND DRIVING AS DESIGNED. CHECK ENGINE LIGHT OFF. CUSTOMER TO MONITOR. PRINTOUTS INCLUDED ON FILE.</p>
<p><span style="text-decoration:underline;">Final Verdict:</span> Fuel Delivery System</p>
<p><span style="text-decoration:underline;">Return Date:</span> January 21st, 2009</p>
<p><span style="text-decoration:underline;">Days:</span>  1 Days</p>
<p><strong>5. January 22, 2009 – 18738 Miles</strong></p>
<p><span style="text-decoration:underline;">Symptoms:</span> (again.. yes again) My car felt like I was dragging thousands of pounds of weight behind the vehicle. The car would not idle nicely, and eventually died when at idle. It also felt as if the transmission was going to blow up when driving. Vehicle would die while idle or slow which posed a safety hazard in intersections.</p>
<p><span style="text-decoration:underline;">Loaners: </span>Car was delivered to <a href="http://www.patrickcars.com/index.htm">Patrick BMW</a> Service Center and received an <a href="http://www.jeep.com/en/2008/wrangler/index.html">2009 Jeep Wrangler</a> loaner vehicle. They switched me to a <a href="http://www.toyota.com/corolla/">2009 Toyota Corolla</a> for the week as I put on major miles on the weekends driving between Wisconsin and Chicago.</p>
<p><span style="text-decoration:underline;">Results (verbatim):</span> A OWNER REPORTS WHILE DRIVING LAST NIGHT THE ENGINE HAD REDUCED POWER AND SEEMED TO MISFIRE</p>
<p>CAUSE: .</p>
<blockquote><p>5199000 OPEN TIME Job time without allowance for / body equipment</p>
<p>235 WAR</p>
<p>1 13-53-7-545-725 INLET PIPE:135040</p></blockquote>
<p><span style="text-decoration:underline;">Final Verdict:</span> Fuel Delivery System (fuel rail sensor)</p>
<p><span style="text-decoration:underline;">Return Date:</span> January 28, 2009</p>
<p><span style="text-decoration:underline;">Days:</span>  7 Days</p>
<p><strong>GRAND TOTAL SERVICES:</strong> 5</p>
<p><strong>GRAND TOTAL DAYS:</strong> 17 Days</p>
<p><strong> </strong></p>
<p><strong>UPDATED 6. June 1, 2009 – 30766 Miles</strong><strong> </strong></p>
<p><a href="http://brentblawat.files.wordpress.com/2009/06/img00419200906011509.jpg"><img style="display:inline;border:0;" title="IMG00419-20090601-1509" src="http://brentblawat.files.wordpress.com/2009/06/img00419200906011509_thumb.jpg?w=331&#038;h=249" border="0" alt="IMG00419-20090601-1509" width="331" height="249" /></a> <a href="http://brentblawat.files.wordpress.com/2009/06/img00420200906011510.jpg"><img style="display:inline;border:0;" title="IMG00420-20090601-1510" src="http://brentblawat.files.wordpress.com/2009/06/img00420200906011510_thumb.jpg?w=327&#038;h=246" border="0" alt="IMG00420-20090601-1510" width="327" height="246" /></a></p>
<p><strong>(BMW 335XI Engine malfunction! Reduced power.)</strong></p>
<p><span style="text-decoration:underline;">Symptoms:</span> (again.. yes again) My car felt like I was dragging thousands of pounds of weight behind the vehicle. The car would not idle nicely, and eventually died when at idle. It also felt as if the transmission was going to blow up when driving. Vehicle would die while idle or slow which posed a safety hazard in intersections.</p>
<p><span style="text-decoration:underline;">Results (verbatim):</span> Issue was Reported to BMW… Please view Part 2 – Contracting the Dealer / BMW of North America</p>
<p><span style="text-decoration:underline;">Final Verdict:</span> <a href="http://brentblawat.wordpress.com/2009/02/03/2008-bmw-335xi-fuel-delivery-lemon-story-part-2/"><strong>Proceed to Part 2 – Contacting the Dealer / BMW of North America</strong></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/376/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/376/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/376/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=376&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2009/01/24/2008-bmw-335xi-fuel-delivery-lemon-story/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/sany0902-thumb.jpg" medium="image">
			<media:title type="html">SANY0902</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/sany0903-thumb.jpg" medium="image">
			<media:title type="html">SANY0903</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/n691181521-1293914-760-thumb1.jpg" medium="image">
			<media:title type="html">n691181521_1293914_760</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/beauty-thumb.jpg" medium="image">
			<media:title type="html">Beauty</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/06/img00419200906011509_thumb.jpg" medium="image">
			<media:title type="html">IMG00419-20090601-1509</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/06/img00420200906011510_thumb.jpg" medium="image">
			<media:title type="html">IMG00420-20090601-1510</media:title>
		</media:content>
	</item>
		<item>
		<title>Wavelink Enabler Issues &#8211; A story of the Subpar Enablers</title>
		<link>http://bittangents.com/2009/01/23/wavelink-enabler-issues-a-story-of-the-subpar-enablers/</link>
		<comments>http://bittangents.com/2009/01/23/wavelink-enabler-issues-a-story-of-the-subpar-enablers/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 06:58:50 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Software Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2009/01/23/wavelink-enabler-issues-a-story-of-the-subpar-enablers/</guid>
		<description><![CDATA[By: Brenton Blawat
Yet again we hit a frustrating snag with the Wavelink Enabler and I have taken it upon myself to add a new section to my blog for Wavelink Enabler Bugs. It’s not that I am frustrated with Wavelink support personnel. They have been more than attentive to my issues and have responded to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=362&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>By: Brenton Blawat</p>
<p>Yet again we hit a frustrating snag with the Wavelink Enabler and I have taken it upon myself to add a new section to my blog for Wavelink Enabler Bugs. It’s not that I am frustrated with Wavelink support personnel. They have been more than attentive to my issues and have responded to my calls almost immediately. </p>
<p>The frustration comes with the core of the issue. I am having the same problems in the PPT-8846 Enabler (Released December 2006) as I am having in the MC-55 Beta Enabler (Beta Release this 2009). To Wavelink’s immediate defense, the MC-55 “Beta” Enabler is a “Beta” for a reason. But having an Enabler that has been revised more than once since the release of the 3.50-56 Enabler with the same fundamental issues? – hmmm. </p>
<h2></h2>
<h3>Known Issues:</h3>
<p><strong>Issue: Handheld Desktop Displays ; No Method to Get Back to the Wavelink Enabler.</strong></p>
<div align="center">
<table cellspacing="0" cellpadding="2" width="513" align="center" border="0">
<tbody>
<tr>
<td valign="top" width="200"><a href="http://brentblawat.files.wordpress.com/2009/01/getattachment1.jpg"><img title="GetAttachment" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="332" alt="GetAttachment" src="http://brentblawat.files.wordpress.com/2009/01/getattachment-thumb1.jpg?w=250&#038;h=332" width="250" border="0" /></a> </td>
<td valign="top" width="311"><a href="http://brentblawat.files.wordpress.com/2009/01/img00041200901131517.jpg"><img title="IMG00041-20090113-1517" style="display:inline;border-width:0;" height="339" alt="IMG00041-20090113-1517" src="http://brentblawat.files.wordpress.com/2009/01/img00041200901131517-thumb.jpg?w=267&#038;h=339" width="267" border="0" /></a> </td>
</tr>
<tr>
<td valign="top" width="200"><strong><a href="http://www.motorola.com/business/US-EN/MC55_US-EN.do?vgnextoid=360acfd736a7c110VgnVCM1000008406b00aRCRD">Motorola MC-55</a></strong></td>
<td valign="top" width="311"><strong><a href="http://www.motorola.com/Business/US-EN/Business+Product+and+Services/Mobile+Computers/Handheld+Computers/PPT8800_US-EN">Symbol PPT-8846</a></strong></td>
</tr>
</tbody>
</table></div>
<p>&#160;</p>
<p>Above is an image of my case and point for my frustration. The above graphic displays the exact same issue on both Windows Mobile 6.1 (left) and Pocket PC 2003 (right). Same problem 3 years later?</p>
<p>&#160;</p>
<div align="center">
<table cellspacing="0" cellpadding="2" width="753" align="center" border="0">
<tbody>
<tr>
<td valign="top" width="366"><a href="http://brentblawat.files.wordpress.com/2009/01/configscreen2.jpg"><img title="configscreen2" style="display:inline;border-width:0;" height="376" alt="configscreen2" src="http://brentblawat.files.wordpress.com/2009/01/configscreen2-thumb.jpg?w=314&#038;h=376" width="314" border="0" /></a> </td>
<td valign="top" width="385"><a href="http://brentblawat.files.wordpress.com/2009/01/configscreen3.jpg"><img title="configscreen3" style="display:inline;border-width:0;" height="374" alt="configscreen3" src="http://brentblawat.files.wordpress.com/2009/01/configscreen3-thumb.jpg?w=331&#038;h=374" width="331" border="0" /></a> <a href="http://brentblawat.files.wordpress.com/2009/01/configscreen21.jpg"></a></td>
</tr>
<tr>
<td valign="top" width="366">
<p align="center"><strong>Enabler Config MC-55</strong></p>
</td>
<td valign="top" width="385"><strong>Enabler Config PPT-8846</strong></td>
</tr>
</tbody>
</table></div>
<p>When configuring the Enabler you have the ability to Manage the Taskbar and effectively lock access to the background of the Enabler. While this works most of the time I’ve noticed multiple instances of the Enabler allowing access to the desktop. Additionally, there is no way for the Wavelink Enabler to be accessed again. This is troublesome especially when the Enabler is responsible for Launching Applications (like in my client’s case).</p>
<p>Come on Wavelink; you can do better than this. – I have faith!</p>
<p><strong>Work Around: </strong>The only work around for this issue is to restart the handheld. (aka warm boot/soft reset) </p>
<p><strong>Known Versions:</strong> 3.50-56, 4-06-13 beta</p>
<p><strong>Bug Status: </strong>Reported to Wavelink</p>
<p>&#160;</p>
<p><strong>Issue: Handheld Freezes in the Locked Full Screen Window; No Method to Get Back to Wavelink Enabler.</strong></p>
<p><strong></strong></p>
<div align="center">
<table cellspacing="0" cellpadding="2" width="696" align="center" border="0">
<tbody>
<tr>
<td valign="top" width="374">
<p align="center"><a href="http://brentblawat.files.wordpress.com/2009/01/getattachment2.jpg"><img title="GetAttachment2" style="display:inline;border-width:0;" height="370" alt="GetAttachment2" src="http://brentblawat.files.wordpress.com/2009/01/getattachment2-thumb.jpg?w=278&#038;h=370" width="278" border="0" /></a> </p>
</td>
<td valign="top" width="320"><a href="http://brentblawat.files.wordpress.com/2009/01/img00040200901131517.jpg"><img title="IMG00040-20090113-1517" style="display:inline;border-width:0;" height="365" alt="IMG00040-20090113-1517" src="http://brentblawat.files.wordpress.com/2009/01/img00040200901131517-thumb.jpg?w=262&#038;h=365" width="262" border="0" /></a> *</td>
</tr>
<tr>
<td valign="top" width="411"><strong><a href="http://www.motorola.com/business/US-EN/MC55_US-EN.do?vgnextoid=360acfd736a7c110VgnVCM1000008406b00aRCRD">Motorola MC-55</a>               <br />(Agent Not Found)</strong></td>
<td valign="top" width="335"><strong><a href="http://www.motorola.com/Business/US-EN/Business+Product+and+Services/Mobile+Computers/Handheld+Computers/PPT8800_US-EN">Symbol PPT-8846</a></strong>             <br /><strong>(Update Complete)</strong></td>
</tr>
</tbody>
</table></div>
<p>&#160;</p>
<p>Both of the devices are frozen at the Update Window Screen. While the PPT-8846 is at a hard lock, the MC-55 will return to the Enabler if touched. * The right image was modified to remove application specific information and agent addresses.</p>
<div align="center">
<table cellspacing="0" cellpadding="2" width="705" align="center" border="0">
<tbody>
<tr>
<td valign="top" width="361"><a href="http://brentblawat.files.wordpress.com/2009/01/configscreen4.jpg"><img title="ConfigScreen4" style="display:inline;border-width:0;" height="386" alt="ConfigScreen4" src="http://brentblawat.files.wordpress.com/2009/01/configscreen4-thumb.jpg?w=341&#038;h=386" width="341" border="0" /></a> </td>
<td valign="top" width="342"><a href="http://brentblawat.files.wordpress.com/2009/01/configscreen5.jpg"><img title="ConfigScreen5" style="display:inline;border-width:0;" height="386" alt="ConfigScreen5" src="http://brentblawat.files.wordpress.com/2009/01/configscreen5-thumb.jpg?w=322&#038;h=386" width="322" border="0" /></a> </td>
</tr>
<tr>
<td valign="top" width="361">
<p align="center"><strong><a href="http://www.motorola.com/business/US-EN/MC55_US-EN.do?vgnextoid=360acfd736a7c110VgnVCM1000008406b00aRCRD">Motorola MC-55</a></strong></p>
</td>
<td valign="top" width="342">
<p align="center"><strong><a href="http://www.motorola.com/Business/US-EN/Business+Product+and+Services/Mobile+Computers/Handheld+Computers/PPT8800_US-EN">Symbol PPT-8846</a></strong></p>
</td>
</tr>
</tbody>
</table></div>
<p>&#160;</p>
<p>The Wavelink Enabler is having issues with the Full Screen Control and Update Window. As shown in the above screens, the Update Windows should be “Hidden” as it’s normal state. For some reason, the Update Window Remains locked and will not automatically unlock itself. The end result is the Enabler is frozen in an Update State. The subsequent updates will not affect the screen locked out state.</p>
<p><strong>Work Around: </strong>The only work around for this issue is to restart the handheld or not lock the screen during updates. (aka warm boot/soft reset)</p>
<p><strong>Known Versions:</strong> 3.50-56, 4-06-13 beta</p>
<p><strong>Bug Status: </strong>Reported to Wavelink </p>
<p><strong>Issue: Software which monitors for state changes of Wireless WILL lock handheld device or cause TCP/IP stack corruption.</strong></p>
<p><strong></strong></p>
<div align="center">
<table cellspacing="0" cellpadding="2" width="696" align="center" border="0">
<tbody>
<tr>
<td valign="top" width="374">
<p align="center">&#160;<a href="http://brentblawat.files.wordpress.com/2009/01/img00047200901131522.jpg"><img title="IMG00047-20090113-1522" style="display:inline;border-width:0;" height="380" alt="IMG00047-20090113-1522" src="http://brentblawat.files.wordpress.com/2009/01/img00047200901131522-thumb.jpg?w=286&#038;h=380" width="286" border="0" /></a> </p>
</td>
<td valign="top" width="320"><a href="http://brentblawat.files.wordpress.com/2009/01/img00046200901131521.jpg"><img title="IMG00046-20090113-1521" style="display:inline;border-width:0;" height="390" alt="IMG00046-20090113-1521" src="http://brentblawat.files.wordpress.com/2009/01/img00046200901131521-thumb.jpg?w=294&#038;h=390" width="294" border="0" /></a> </td>
</tr>
<tr>
<td valign="top" width="411"><strong><a href="http://www.motorola.com/Business/US-EN/Business+Product+and+Services/Mobile+Computers/Handheld+Computers/PPT8800_US-EN">Symbol PPT-8846</a></strong>             <br /><strong>(Corrupt TCP/IP Stack)</strong></td>
<td valign="top" width="335"><strong><a href="http://www.motorola.com/Business/US-EN/Business+Product+and+Services/Mobile+Computers/Handheld+Computers/PPT8800_US-EN">Symbol PPT-8846</a></strong>             <br /><strong>(Idle Application Locked)</strong></td>
</tr>
</tbody>
</table></div>
<p>* The images have been blurred to remove any client specific information. </p>
<p>On the left you will see a corrupt TCP/IP Stack. You also will see that the wireless status indicator is changed to “no connectivity”. In this instance, the application which was sharing the call to the API for the wireless status lost the battle.</p>
<p>On the right, you will see the application (which previously lost the race) is frozen. The wireless feud seems to have caused the login credential boxes (the blank space above the numbers) to disappear.&#160; The handheld is locked and unusable. Please note that the wireless status indicator (next to the battery) is missing from the screen. </p>
<p><strong>Work Around: </strong>The only work around for this issue is to restart the handheld (aka warm boot/soft reset)</p>
<p><strong>Known Versions:</strong> 3.50-56</p>
<p><strong>Bug Status: </strong>Reported to Wavelink</p>
</p>
<h3><a href="http://brentblawat.wordpress.com/wavelink-training/">For More Free Training by BIT Tangents: Go to Wavelink Training (Click Here)</a></h3>
<p><strong>Info on Author: </strong><a href="http://www.brentblawat.com">Brenton Blawat</a> is a <a href="http://www.wavelink.com">Wavelink</a> Consultant who has worked closely with the Avalanche product for over 5 years. He has integrated Wavelink AMC (and variants) into a multitude of corporations including but not limited to: <a href="http://www.senecafoods.com">Seneca Foods Corporation</a>, <a href="http://www.ae.com">American Eagle Outfitters</a>, and <a href="http://www.alexianbrothershealth.org/">Alexian Brothers Health System</a>. </p>
<p>** BIT Tangents nor any of its contributors are liable for damages as a result of following these instructions. These instructions are intended as guidelines for best practices and are to be used at the executioners own risk! All re-productions / digital copies of this content must be approved in writing by an authorized representative of BIT Tangents. **</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/362/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/362/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/362/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=362&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2009/01/23/wavelink-enabler-issues-a-story-of-the-subpar-enablers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/getattachment-thumb1.jpg" medium="image">
			<media:title type="html">GetAttachment</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/img00041200901131517-thumb.jpg" medium="image">
			<media:title type="html">IMG00041-20090113-1517</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/configscreen2-thumb.jpg" medium="image">
			<media:title type="html">configscreen2</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/configscreen3-thumb.jpg" medium="image">
			<media:title type="html">configscreen3</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/getattachment2-thumb.jpg" medium="image">
			<media:title type="html">GetAttachment2</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/img00040200901131517-thumb.jpg" medium="image">
			<media:title type="html">IMG00040-20090113-1517</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/configscreen4-thumb.jpg" medium="image">
			<media:title type="html">ConfigScreen4</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/configscreen5-thumb.jpg" medium="image">
			<media:title type="html">ConfigScreen5</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/img00047200901131522-thumb.jpg" medium="image">
			<media:title type="html">IMG00047-20090113-1522</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2009/01/img00046200901131521-thumb.jpg" medium="image">
			<media:title type="html">IMG00046-20090113-1521</media:title>
		</media:content>
	</item>
		<item>
		<title>Blackberry Touch / Storm Review: Still no iPhone</title>
		<link>http://bittangents.com/2008/11/20/blackberry-touch-storm-review-still-no-iphone/</link>
		<comments>http://bittangents.com/2008/11/20/blackberry-touch-storm-review-still-no-iphone/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 20:00:16 +0000</pubDate>
		<dc:creator>brentblawat</dc:creator>
				<category><![CDATA[Product Review Tangents]]></category>

		<guid isPermaLink="false">http://brentblawat.wordpress.com/2008/11/20/blackberry-touch-storm-review-still-no-iphone/</guid>
		<description><![CDATA[By:Brenton Blawat
 
After a huge media ramp up and a Verizon demo on Thursday, November 20, 2008, there again has much left to be desired.
Taking Delivery: It’s here but you can’t have it. &#62;:( 
Perhaps most frustrating is the release on Friday but no one except ‘new customers’ will be privileged enough to receive on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=336&subd=brentblawat&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<p>By:Brenton Blawat</p>
<p><a href="http://brentblawat.files.wordpress.com/2008/11/blackberrystorm.jpg"><img title="black berryStorm" style="display:inline;border-width:0;" height="299" alt="black berryStorm" src="http://brentblawat.files.wordpress.com/2008/11/blackberrystorm-thumb.jpg?w=152&#038;h=299" width="152" border="0" /></a> </p>
<p>After a huge media ramp up and a Verizon demo on Thursday, November 20, 2008, there again has much left to be desired.</p>
<p><strong>Taking Delivery: It’s here but you can’t have it. &gt;:( </strong></p>
<p>Perhaps most frustrating is the release on Friday but no one except ‘new customers’ will be privileged enough to receive on Friday. Everyone else will receive a handheld via a remote warehouse. While the principle shipping from a warehouse makes sense as a corporation, those geeks which are thriving for new technology, and much like that caffeine fix that I yearn for every morning, leaves a bitter taste in my mouth when new customers can receive the latest and greatest right away and I am stuck… waiting? So much for customer loyalty.</p>
<p><strong>Note:</strong> I do have to note that I have a pre-order configured for expedited delivery on Saturday. They technically couldn’t even put it into the system until tomorrow on the official release date. I for some reason feel uneasy about the pre-order being fulfilled… as they were filling these pre-order slips out left and right. I am expecting to see it on Monday or later. </p>
<p>&#160;</p>
<p><strong>Functionality: Neat but nothing innovative.</strong></p>
<p><strong>Touch </strong>– The touch screen is very responsive and accurate. While you scroll your finger around the screen, location of your finger is exactly where you want it to be. &#8211; Do not confuse this with the SurePress functionality. While the touch screen goes where you want it to, when pressing the screen to register the click, it would often miss the icon I was going for; frustrating.</p>
<p><strong>SurePress </strong>– As mentioned by the GDGT team in their phone reviews, either you love the technology or you hate it. While 15 minutes of play time and several “The quick brown fox jumped over the lazy dog.” later, I found that the keyboard is something that I can tolerate. Being that I came from a LG Chocolate, I enjoy the fact that you know you are clicking something.</p>
<p><strong>QWERTY Keyboard </strong>– This is not a thumb keyboard. I have average size thumbs and I found my thumbs were some what obtrusive to the typing on their qwerty keyboard. With practice I believe I might be able to “thumb it” but for now, I’d recommend your index finger to type. No more learning curve than the iPhone, but a learning curve.</p>
<p><strong>Application Launching</strong> – I was very disappointed with the speeds of the application launching. The iPhone’s powerhouse of a GPU and processing power, really puts the Blackberry to shame. This is probably the most disappointing feature of the Blackberry Touch unit. I want applications to launch like NOW. I don’t want to see 15 second app launch delays as an acceptable speed anymore. If Blackberry wants to stay competitive in the market, c’mon guys… let’s get the launch times to less than 5 seconds.</p>
<p><strong>Screen Rotation Speeds – </strong>That wonderful demo they had on the TV is a bunch of smoke and mirrors. The screen took a minimum of 5 seconds to rotate to the QWERTY Position and another 5 seconds back. This was again another let down. The Verizon tech stated that it’s faster with a software update but so is my car and my microwave. Put your best foot forward, I don’t want to update the software out of the box.</p>
<p><strong>No WiFi – </strong>You’ve got to be kidding me! I would pay another $100 to get this feature. Market demands WiFi in their devices… Market 1 Blackberry 0.</p>
<p><strong>Phone Storage</strong> – As part of the introductory release, the Blackberry Touch is including a 8gb MicroSD card with the phone (and another 1gb embedded on the device). While this doesn’t compete with the iPhone 16gb, the Blackberry is focused towards business professionals, and 8gb is a great start.</p>
<p><strong>Camera </strong>– At last! Something I am happy about! I really liked the 3 megapixel camera on the phone. Even better it has an auto focus which works. The iPhone has issues taking pictures of close up items, however, the Blackberry had no issue refocusing on small lettering on a box. Camera a plus!</p>
<p><strong>App Store – </strong>Limited applications, soon to grow. It seemed to me that the Blackberry App Store will provide the opportunity for innovation on the device. I am going to definitely look into the SDK for the Blackberry to develop useful applications.</p>
<p><strong>Corporate Documents</strong> – The Blackberry has stronger support corporate files than the previous versions. I’m looking forward to trying out several formats, and emailing my revisions. </p>
<p><strong>Corporate Email </strong>– The iPhone loses again. Blackberry is still built on the instant (push not pull) email access and truly is a perk that the iPhone cannot touch. While this feature may be nothing new, it gives the Crackberry users their fix.</p>
<p><strong>Broadband </strong>– For $59.00 / month, broadband service can be added to the cell phone plan. This is the service where you tether your phone to a laptop and browse the internet. I asked about access to the internet for my laptop via Bluetooth and got a bunch of blank stares. I don’t mind tethering the phone but really? Broadband was fast, however, this 3G network wasn’t anything that blew me away – but a feature iPhone users would love to have!</p>
<p><strong></strong></p>
<p><strong>The Final Verdict: ARG! But I’ll take it.</strong></p>
<p>Verizon Wireless has been plagued with phones that have been good, but not great. I am looking forward to working with the Blackberry Touch / Storm to see if familiarity with the QWERTY keyboard will make accelerate my productivity. Ultimately, I bought the phone as it’s the best phone available for Verizon. </p>
<p>Now only if we could legally get an iPhone on a Verizon…</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brentblawat.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brentblawat.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brentblawat.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brentblawat.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brentblawat.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brentblawat.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brentblawat.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brentblawat.wordpress.com/336/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brentblawat.wordpress.com/336/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brentblawat.wordpress.com/336/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bittangents.com&blog=4066351&post=336&subd=brentblawat&ref=&feed=1" />]]></content:encoded>
			<wfw:commentRss>http://bittangents.com/2008/11/20/blackberry-touch-storm-review-still-no-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2fd28fc9e2db7e469f8237a6d55fba2b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">brentblawat</media:title>
		</media:content>

		<media:content url="http://brentblawat.files.wordpress.com/2008/11/blackberrystorm-thumb.jpg" medium="image">
			<media:title type="html">black berryStorm</media:title>
		</media:content>
	</item>
	</channel>
</rss>