<?xml version="1.0" encoding="ISO-8859-1"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Blogging@Wharton</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/" />
    <link rel="self" type="application/atom+xml" href="http://blogs.wharton.upenn.edu/atom.xml" />
    <id>tag:blogs.wharton.upenn.edu,2009-02-02://59</id>
    <updated></updated>
    <subtitle>An aggregator of all Wharton Blogs.</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Enterprise 4.3-en</generator>


<entry>
    <title>Green IT Audio Conference with Lorie Wigle, November 13</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/greencomputing/2009/11/green-it-video-conference-with-lorie-wigle-november-13.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/greencomputing//77.1696</id>

    <published>2009-11-06T19:22:38Z</published>
    <updated>2009-11-06T21:47:33Z</updated>

    <summary> Join your intrepid Green IT Committee for an audio conference with Lorie Wigle on November 13th. Lorie is the General Manager of the Eco-Technology Program Office at the Intel Corporation and is the president of the Climate Savers Computing...</summary>
    <author>
        <name>Cadence D Anderson</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-us" xml:base="http://blogs.wharton.upenn.edu/greencomputing/">
        <![CDATA[



<p>Join your intrepid Green IT Committee for an <b>audio conference</b> with <a href="http://www.climatesaverscomputing.org/about/board-of-directors/lorie-wigle">Lorie Wigle</a> on November 13th.  Lorie is the General Manager of the Eco-Technology Program Office at the Intel Corporation and is the president of the <a href="http://www.climatesaverscomputing.org/">Climate Savers Computing Initiative</a> (CSCI).  She will be sharing information about the CSCI and there will be ample time for Q&amp;A.</p>

<ul>
<li>Friday, November 13</li>
<li>12:30 - 1:30 pm<br /></li>
<li>JMHH F65</li>
<li>Open to all interested parties at Penn.</li>
</ul>
]]>
        

    </content>
</entry>

<entry>
    <title>The DISMal Science of Custom Boot Images</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/staff/jameslp/2009/11/the-dismal-science.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/jameslp//80.1714</id>

    <published>2009-11-04T18:56:59Z</published>
    <updated>2009-11-04T21:36:53Z</updated>

    <summary>One of the last major steps to restore Windows Deployment Services to production was to create a custom boot image. I was determined to bypass issues we experienced with the default boot.wim image where users reported show-stopping &quot;Network Path Not...</summary>
    <author>
        <name>Jamie Pemantell</name>
        
    </author>
    
    <category term="dism" label="DISM" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="waik" label="WAIK" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="wds" label="WDS" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="windows7" label="Windows 7" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-us" xml:base="http://blogs.wharton.upenn.edu/staff/jameslp/">
        <![CDATA[One of the last major steps to restore <a href="http://technet.microsoft.com/en-us/library/dd348499%28WS.10%29.aspx">Windows Deployment Services</a> to production was to create a custom boot image. I was determined to bypass issues we experienced with the default boot.wim image where users reported show-stopping "Network Path Not Found" errors toward the end of the capture procedure, which resulted from a lack of supported NIC drivers in the WinPE image. I made a policy decision to include all custom drivers in one set of setup and capture images so that users exclusively see those two options at the boot menu. <br /><br /><font style="font-size: 1.25em;"><b>Missing Tool FAIL</b></font><br /><br />The world has changed since I first deployed WDS... First of all, I'm running the official RTM version of Windows 7 on my desktop, and secondly Windows 2008 R2 was released. Collectively, this is known as <a href="http://www.microsoft.com/mscorp/execmail/2009/09-29NewEfficiency.mspx">"the new efficiency."</a> So, to get started I installed the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=696DD665-9F76-4177-A811-39C26D3B3B34&amp;displaylang=en">Windows 7 version of the Windows Automated Installation Kit</a> on my desktop. Next, I brought down the boot.wim file from the Sources folder on the Windows 2008 R2 install media. I went through and carefully documented the prep steps for adding custom drivers, and things were going smoothly until: <br /><i><br />peimg /inf=c:\temp\drivers\*inf /image=C:\temp\mount</i><br /><br />...after which I received the puzzling error:<br /><br /><b>'peimg' is not recognized as an internal or external command,<br />operable program or batch file.</b><br /><br />I scoured the file system for peimg.exe only to find that it was no longer there. Some research yielded the fact that, as of WinPE 3 and the Windows 7 WAIK, image-servicing functions are the now the domain of <a href="http://msdn.microsoft.com/en-us/library/dd371719%28VS.85%29.aspx">DISM</a>: Deployment Image Servicing and Management. <br /><br /><b><font style="font-size: 1.25em;">Supported Architecture FAIL</font></b><br /><br />That is OK with me because I'm all for doing things the new way, especially if it is newly efficient in some nebulous indeterminate fashion. So, I studied the new syntax and eccentricities of DISM, and carefully documented it for my users. The <a href="http://technet.microsoft.com/en-us/library/dd744355%28WS.10%29.aspx">procedure</a> is fairly similar to that of ImageX:<br /><br /><ol><li><i>dism /Get-WimInfo /WimFile:C:\temp\customboot.wim - </i>Retrieve the index number or name of the image that you wish to modify.</li><li><i>dism /Mount-Wim /WimFile:C:\temp\customboot.wim /index:2 /MountDir:C:\temp\mount</i> - Mount the image in a directory called C:\temp\mount. <br /></li><li><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 12"><meta name="Originator" content="Microsoft Word 12"><link rel="File-List" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"><link rel="themeData" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"><link rel="colorSchemeMapping" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:PunctuationKerning/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:DontGrowAutofit/>
   <w:SplitPgBreakAndParaMark/>
   <w:DontVertAlignCellWithSp/>
   <w:DontBreakConstrainedForcedTables/>
   <w:DontVertAlignInTxbx/>
   <w:Word11KerningPairs/>
   <w:CachedColBalance/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]--><style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-alt:"Calisto MT";
	mso-font-charset:0;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1107304683 0 0 415 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-alt:"Century Gothic";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520092929 1073786111 9 0 415 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page Section1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
-->
</style><!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
</style>
<![endif]--><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 12"><meta name="Originator" content="Microsoft Word 12"><link rel="File-List" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"><link rel="themeData" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"><link rel="colorSchemeMapping" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:PunctuationKerning/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:DontGrowAutofit/>
   <w:SplitPgBreakAndParaMark/>
   <w:DontVertAlignCellWithSp/>
   <w:DontBreakConstrainedForcedTables/>
   <w:DontVertAlignInTxbx/>
   <w:Word11KerningPairs/>
   <w:CachedColBalance/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]--><style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-alt:"Calisto MT";
	mso-font-charset:0;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1107304683 0 0 415 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-alt:"Century Gothic";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520092929 1073786111 9 0 415 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page Section1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
-->
</style><!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
</style>
<![endif]--><span style="font-size: 11pt; font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; color: rgb(31, 73, 125);"></span> <i>dism /image:c:\temp\mount /add-driver /driver:c:\temp\drivers /recurse</i> - Add all .inf driver files contained in subfolders of c:\temp\drivers.</li><li><i>dism /Unmount-Wim /MountDir:C:\temp\mount /Commit </i>- Unmount the image, committing changes.</li></ol>This was successful and I added the setup image to WDS and tested. To my dismay, I learned that, since Windows 2008 R2 is only supported on the x64 architecture, its boot.wim image is likewise x64 only, and I was unable to boot my x86 client from it.<br /><br /><font style="font-size: 1.25em;"><b>Backward Compatibility FAIL</b></font><br /><br />I persisted in my mission and obtained the boot.wim file from the Windows 2008 SP2 x86 install media. This time, when adding the drivers with DISM, I was greeted with a different error message:<br /><br /><b>Error: 50<br />DISM does not support servicing a Windows Vista RTM or earlier operating system<br />If the operating system is supported check that SSShim.DLL is present.<br />The DISM log file can be found at C:\Windows\Logs\DISM\dism.log</b><br /><br />Windows 2008, along with Vista SP1 and above, are documented as supported by DISM. The SSShim.dll file was definitely present, and was actively being referenced in the dism.log file. The relevant error in dism.log seemed to be the line:<br /><br /><b>DISM.EXE: Failed to get target image version. HRESULT=0x80070002 </b><br /><br />I tried using the boot.wim from the Windows 2008 non-SP2 x86 install disk and received the same error. I researched extensively on the web and only turned up <a href="http://social.technet.microsoft.com/Forums/en-US/w7itproinstall/thread/773c01f0-737c-4619-893a-0ee8bebc66ab">one post</a> which had one "me too" response. After a lot of work spinning my wheels, it was time to haul in the big guns and put in a case with MS Premier Support.<br /><br />After confirming that I was using the correct syntax, the tech received some information from the engineers regarding limitations of DISM on Windows Vista SP1 and Windows Server 2008 pre-R2 images: <br /><b>•&nbsp;&nbsp;&nbsp; Only offline scenarios are supported.&nbsp; <span style="color: rgb(0, 255, 0);">(OK)</span><br />•&nbsp;&nbsp;&nbsp; The Windows image that you are updating must be Vista SP1 or Server 2008.&nbsp; <span style="color: rgb(0, 255, 0);">(OK)</span><br />•&nbsp;&nbsp;&nbsp; DISM must be run from a full operating system or from Windows PE. <span style="color: rgb(0, 255, 0);">(OK)</span></b><br /><b>•&nbsp;&nbsp;&nbsp; Only Package Manager features are available – the new functionality in DISM, such as adding and removing drivers without an answer file, or enumerating packages and drivers, will not translate to package manager syntax. <span style="color: rgb(255, 0, 0);">(FAIL)</span></b><br /><br /><b><font style="font-size: 1.25em;">Answer File FAIL</font></b><br /><br />The phrase "adding and removing drivers <i>without an answer file</i>" in the tech's response was intriguing to me because it implied that the operation may be possible using an answer file. I dug in and researched what this would entail. <br /><br />Like the Sysprep unattend xml answer file, it is<a href="http://technet.microsoft.com/en-us/library/dd744355%28WS.10%29.aspx#AddDriversUnattend"> created using Windows System Image Manager</a> from the WAIK.&nbsp; After you have pointed the file to the locations of your drivers and generated the file, you mount the image and run the command:<br /><br /><i>dism /Image:C:\temp\mount /Apply-Unattend:C:\temp\unattend.xml</i><br /><br />Sadly, after another significant time investment, this operation resulted in the same error 50.<br /><br /><font style="font-size: 1.25em;"><b>Conclusion</b></font><br /><br />In summary, I discovered that unless the Windows 7 WAIK is changed in a future update, it will be necessary to continue to run the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=94BB6E34-D890-4932-81A5-5B50C657DE08&amp;displaylang=en">Vista SP1 WAIK</a> in parallel in order to add custom NIC drivers to x86 boot images <a href="http://apcmag.com/how_to_inject_drivers_into_microsofts_free_os_windows_pe_20.htm">using peimg</a>.&nbsp; I was told by Microsoft that other customers have noticed this problem, and that my feedback would be forwarded to the product team for consideration in a future release. <br /><br />That being said, this situation has made me consider the need to create and maintain separate x64 platform boot images and client OS system images in Windows Deployment Services. For three years, since Core2Duo hit the market and became standard, x64 has been available to the desktop user and it is really no longer in an "experimental" stage. Most of the common software packages and drivers which were slow to support x64 are now compliant (though, you should do a reality check of your specific users' software needs before deploying.) If the direction of Windows 2008 R2 can be interpreted as an early indicator of the future of the desktop OS market, we as IT professionals should be prepared -- and prepare our users -- for the inevitable.<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 12"><meta name="Originator" content="Microsoft Word 12"><link rel="File-List" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"><link rel="themeData" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"><link rel="colorSchemeMapping" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:PunctuationKerning/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:DontGrowAutofit/>
   <w:SplitPgBreakAndParaMark/>
   <w:DontVertAlignCellWithSp/>
   <w:DontBreakConstrainedForcedTables/>
   <w:DontVertAlignInTxbx/>
   <w:Word11KerningPairs/>
   <w:CachedColBalance/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]--><style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-alt:"Calisto MT";
	mso-font-charset:0;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1107304683 0 0 415 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-alt:"Century Gothic";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520092929 1073786111 9 0 415 0;}
@font-face
	{font-family:Verdana;
	panose-1:2 11 6 4 3 5 4 4 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-1593833729 1073750107 16 0 415 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page Section1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
-->
</style><!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
</style>
<![endif]--><span style="font-size: 8.5pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;"></span><br /><br /><br /><br />&nbsp;<br /><br /><br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>Purpose</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/staff/remurphy/2009/11/purpose.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/remurphy//36.1713</id>

    <published>2009-11-04T16:20:54Z</published>
    <updated>2009-11-04T18:41:18Z</updated>

    <summary><![CDATA[The theme of my life over the past few weeks has been purpose/meaning!&nbsp; I've been consumed with finding purpose/meaning in everything - and not on purpose either (ha ha)!!&nbsp; I've attended quarterly meetings where we ponder and discuss the purpose...]]></summary>
    <author>
        <name>Erin Murphy</name>
        <uri>https://blogs.wharton.upenn.edu/staff/remurphy/</uri>
    </author>
    
        <category term="contemporary society" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="psychology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="thoughts" label="thoughts" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="https://blogs.wharton.upenn.edu/staff/remurphy/">
        <![CDATA[The theme of my life over the past few weeks has been purpose/meaning!&nbsp; I've been consumed with finding purpose/meaning in everything - and not on purpose either (ha ha)!!&nbsp; I've attended quarterly meetings where we ponder and discuss the purpose of Wharton Computing as an organization and how we contribute to Wharton as a whole.&nbsp; I've attended scenario planning meetings where we brainstorm the future purpose of the <a href="http://www.wharton.upenn.edu/learning/">Learning Lab</a>.&nbsp; I've been trying to figure out the higher purpose of technology in higher education for some time now.&nbsp; On a daily basis, I try to find meaning and purpose in my life and experiences all the while knowing that maybe some things lack purpose and happen as completely chaotic/random events.&nbsp; But as the main lesson from Joseph Conrad's <i>Heart of Darkness</i> constantly reminds me, some people need their illusions to feel safe and sane.&nbsp; As for me?&nbsp; I cling to the illusion of purpose.&nbsp; It makes me feel useful and helps me make sense of a complex world and we humans just love to make sense of things!!&nbsp; <br /><br />"You're not going to find the meaning of life hidden under a rock written by someone else.&nbsp; You'll only find it by giving meaning to life from inside yourself." (Dr. Robert Firestone).&nbsp; Purpose provides direction and direction provides goals towards which the present moment can be used efficiently to strive towards.&nbsp; Yet purpose is so hard to define and sometimes the act of defining purpose puts boundaries on an idea that might be better served as boundless.&nbsp; I think of things like myself, and technology in higher education, and even the Learning Lab as entities with great potential yet we're not quite sure of the purpose yet and maybe we're somewhat afraid to define that purpose because we're afraid to limit something or even worse, we're afraid to choose the wrong purpose.&nbsp; How does one solve this problem?<br /><br />Again I find myself answering this question like a Psychologist or even like a Spiritual adviser or something - I'm sorry, it's who I am - this is why I blog instead of give motivational speeches.&nbsp; In a blog at any point the reader can choose to walk away - not that this doesn't happen in live speeches but I think someone might be a little bit more hesitant to leave in face to face interactions.&nbsp; <br /><br />I think to truly think of purpose there are certain things we must cultivate in the process - self awareness, acceptance of fear, a realization of potential, and maybe the ability to see how&nbsp; your purpose may fit into a larger purpose that is bigger than you.&nbsp; This whole "purpose" tirade was topped off by my mom's email to me which included a link to the following blog:&nbsp; Great Health in Tough Times:&nbsp; <a href="http://otiswoodardmd.typepad.com/my_weblog/the-power-of-purpose/">The Power of Purpose</a>.&nbsp; Read it from the bottom up.&nbsp; If you're more of the evidence based/empirical/scientific type - read it with a grain of salt and an open mind.&nbsp; On that note, I'm gonna go contemplate some purpose!<br /><br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>Quick Friday Link on Cognitive Load</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/staff/remurphy/2009/10/quick-friday-link-on-cognitive.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/remurphy//36.1712</id>

    <published>2009-10-30T18:21:45Z</published>
    <updated>2009-10-30T18:30:27Z</updated>

    <summary><![CDATA[I really think we'll be seeing a lot more about cognitive load in learning research and design:&nbsp; New evidence that bullet-points don't work (thanks Becky!).&nbsp; The brain is fascinating!!!&nbsp; Crazy to think about how many limited resources it manages -...]]></summary>
    <author>
        <name>Erin Murphy</name>
        <uri>https://blogs.wharton.upenn.edu/staff/remurphy/</uri>
    </author>
    
        <category term="contemporary society" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="learning" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="psychology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="cognitiveload" label="cognitive load" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="https://blogs.wharton.upenn.edu/staff/remurphy/">
        <![CDATA[I really think we'll be seeing a lot more about cognitive load in learning research and design:&nbsp; <a href="http://www.speakingaboutpresenting.com/design/new-evidence-bullet-points/">New evidence that bullet-points don't work</a> (thanks Becky!).&nbsp; <br /><br />The brain is fascinating!!!&nbsp; Crazy to think about how many limited resources it manages - like our attention span, our self-control, our energy for coping with stress.&nbsp; We are creatures with limits.&nbsp; I don't think society always adequately teaches us to respect those limits and we feel like failures when we find ourselves collapsing under stress or cheating on our diets or not being able to pay attention in class.&nbsp; What makes us feel inadequate?&nbsp; Is it culture?<br /><br />We drink red bulls, take cold medicine, take antidepressants, take supplements to help us focus so that we can be super human.&nbsp; Don't get me wrong I owe a great deal of thanks to some of those things I mentioned, yet I can't help but feel that something needs to change.&nbsp; Something about the way our society is structured?<br /><br />Or is it simply a personal choice?&nbsp; Living by example can be one of the most power forms of leadership.&nbsp; If I accept my limits and my humanity graciously - If I stop the internal tragedy of the commons that plays out inside of me on a daily basis - will I encourage other people to do the same?<br /><br />I wouldn't even know how to begin to do that!!&nbsp; But as I keep hearing - awareness is the first step.&nbsp; I'm becoming aware of my physical limitations while at the same time embracing the idea that most of my limited resources are fully capable of being replenished.&nbsp; I just have to figure out what recharges my batteries. <br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>On Time and Perception</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/staff/remurphy/2009/10/on-time-and-perception.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/remurphy//36.1710</id>

    <published>2009-10-29T16:44:28Z</published>
    <updated>2009-10-29T16:49:50Z</updated>

    <summary><![CDATA[I've been stuck on the notion that time is a big factor for faculty at universities.&nbsp; How to balance activities, class time, and research all the while searching for interesting new ways to change the curriculum?&nbsp; I wanted to read...]]></summary>
    <author>
        <name>Erin Murphy</name>
        <uri>https://blogs.wharton.upenn.edu/staff/remurphy/</uri>
    </author>
    
        <category term="contemporary society" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="psychology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="perception" label="perception" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="timemanagement" label="time management" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="https://blogs.wharton.upenn.edu/staff/remurphy/">
        <![CDATA[I've been stuck on the notion that time is a big factor for faculty at universities.&nbsp; How to balance activities, class time, and research all the while searching for interesting new ways to change the curriculum?&nbsp; I wanted to read more about it so I Googled "Faculty Time Management" and came across two websites - <a href="http://depts.washington.edu/facdev/newsletter/timemgmt.html">Time Management:&nbsp; A Key Faculty Survival Skill </a>and <a href="http://www.cord.edu/dept/assessment/Wkshp99_00Time.htm">Assessment for People Who Don't have Enough Time to Do Assessment</a>.&nbsp; I'm confident that technology will be able to help with the time management issue but ironically I don't have the time to think about that today.&nbsp; <br /><br />But I must say, that I think how much time we THINK we have in a day really has to do with our perception and it never ceases to fascinate me how different out perception can be from reality.&nbsp; Yet as humans, we have the unique ability to differentiate our own perception from a perception that might better reflect truth/reality.&nbsp; Thanks to B Flad for sharing this article on perception:&nbsp; <a href="http://www.cnn.com/2009/OPINION/10/26/lotto.optical.illusions/index.html">Don't Believe Your Lying Eyes</a>.&nbsp; <br /><br />More thoughts to come on Time Management.&nbsp; <br /> ]]>
        
    </content>
</entry>

<entry>
    <title>The Zen of the Windows 2008 Domain</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/opnorr/2009/10/the-zen-of-the-windows-2008-domain.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/opnorr//78.1711</id>

    <published>2009-10-29T15:16:32Z</published>
    <updated>2009-10-29T19:05:09Z</updated>

    <summary>The month of October brought an exponential increase of Window 2008 knowledge to our group. We began the month with a Chalk Talk presentation on Windows 2008 which fortunately was framed in the context of R2. The presentation contained a...</summary>
    <author>
        <name>Jamie Pemantell</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-us" xml:base="http://blogs.wharton.upenn.edu/opnorr/">
        <![CDATA[The month of October brought an exponential increase of Window 2008 knowledge to our group. We began the month with a Chalk Talk presentation on Windows 2008 which fortunately was framed in the context of R2. The presentation contained a wealth of information, and I can only selectively recap some main points here. <br /><br />We received some useful operational tips, one of which was to leave the Server Manager, which automatically launches, open. This gives access to nearly all major administrative features without having to individually click past the UAC for each. Also, the Server Manager is now the new location for the control to disable  <a href="http://technet.microsoft.com/en-us/library/dd883248%28WS.10%29.aspx">IE Enhanced Security</a> if needed.<br /><br />We spent a lot of time considering Read-only Domain Controllers, and their possible application at Wharton San Francisco. I received an answer to a question I had about delegating "light admin functions" to a site admin. I learned that this role actually has full admin rights on the RODC box, but no access to Active Directory (<b>slide 39</b>.) We discussed a possible pitfall of RODC's which would be that if the WAN was down, users would be unable to log in to workstations.<br /><br />One of the benefits of Windows 2008 domains is the migration of SYSVOL replication to DFSR, which is faster, more efficient, and more secure. However, the migration is not automatic and requires a complex process which was covered in-depth by the presentation (<b>slide 74</b>.) These will be necessary steps to undertake during the domain upgrade. <br /><br />We looked at <a href="http://edge.technet.com/Media/Group-Policy-Preferences/">Group Policy Preferences</a> (<b>slide 63</b>) which had some possible benefits for the Labs group, and which we hope to introduce to the distributed reps. The concept is that the extensions allow admins to create settings for applications which are not normally policy-aware. We were advised to leverage the "update" option which would check to see whether the setting was active, and set it if not. <br /><br />One of the heavily-touted features of R2 that appeals to us is the AD Recycle Bin (<b>p. 91</b>.) We learned about some of the eccentricities of this feature. As it exists currently, it relies solely on PowerShell to enable it, and perform recoveries. As such, it bears no resemblance to the graphical Windows Recycle Bin that we're all familiar with. Top-level objects need to be restored first, after which sub-objects may be individually restored. (<b>p. 94</b>.)&nbsp; There is a command to purge deleted items permanently (<b>p. 95</b>.) Even with its limitations, it is still superior to a restore from tape of an OU, which presents many headaches!<br /><br />Managed Service Accounts (<b>p. 96</b>) is another feature that could solve problems for us. We were referred to the <a href="http://technet.microsoft.com/en-us/library/dd548356%28WS.10%29.aspx">Step-by-Step Guide</a> for more in-depth information. It is another feature that is invoked from the command-line. One of the limitations is that the same account cannot be used on multiple computers. <br /><br /><div align="center">***<br /></div><br />On October 13, we took action and performed the schema upgrade. Before
beginning, we confirmed that GROUCHO held both the schema master and
infrastructure master roles by running: <br />
<i><br />
netdom query fsmo</i><br />
<br />
We found that the R2 install media includes a 32-bit version of adprep
to support existing 32-bit DC's. We began the upgrade with the command:
<br />
<br />
<i>adprep32.exe /forestprep</i><br />
<br />
We ran the next command, which must be run on the infrastructure master,<br />
<br />
<i>adprep32.exe&nbsp; /domainprep /gpprep</i><br />
<br />and received an error: <br /><br /><b>Group policy upgrade failed.<br />&nbsp;<br />[Status/Consequence]<br /><br />Adprep cannot extend your existing schema</b><br /><br />After a call to MS Support, Joe learned that it resulted from  permissions on a Group Policy Object that had been changed, causing the upgrade to fail. Changing the permissions back allowed us to successfully complete the upgrade.<br /><br />To prepare for the possibility of RODC's in our environment, we also ran the RODC prep step:<br /><br /><i>adprep32.exe /rodcprep</i><br /><br />The next step was to attempt to add one of the new 2008 domain controllers to our 2003 domain. We had documented the procedure previously and it was going smoothly... until we reached the "Operating System Compatibility" window of the wizard. The message warns that by default Windows NT 4 encryption algorithms are no longer supported which could affect legacy clients and UNIX-like systems that still rely on these algorithms. This is documented in <a href="http://support.microsoft.com/?id=942564">KB 942564</a>.<br /><br />Rather than introduce the new domain controller into our environment with the possibility of these problems, we instead created a dev domain for testing. There is a GPO setting that could be enabled to change the default behavior to accommodate NT 4-style encryption, but we decided to test our UNIX and Mac clients first without this setting to see if they are affected. The main functions we need to verify are domain-joins, authentication to file shares, and LDAP queries from Perl and Sendmail.<br /><br /><div align="center">***<br /></div><br />In our most recent meeting, we discussed that Joe would take on testing domain-joining UNIX machines, Jamie would test domain-join and file-sharing access on Macs running Leopard and Snow Leoopard, and Matt would test ColdFusion authentication and Outlook Live PCNS functionality.<br />
<br />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 12"><meta name="Originator" content="Microsoft Word 12"><link rel="File-List" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"><link rel="themeData" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"><link rel="colorSchemeMapping" href="file:///C:%5CUsers%5Cjameslp%5CAppData%5CLocal%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:PunctuationKerning/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:DontGrowAutofit/>
   <w:SplitPgBreakAndParaMark/>
   <w:DontVertAlignCellWithSp/>
   <w:DontBreakConstrainedForcedTables/>
   <w:DontVertAlignInTxbx/>
   <w:Word11KerningPairs/>
   <w:CachedColBalance/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]--><style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-alt:"Calisto MT";
	mso-font-charset:0;
	mso-generic-font-family:roman;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1107304683 0 0 415 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-alt:"Times New Roman";
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-520092929 1073786111 9 0 415 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page Section1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
-->
</style><!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman","serif";}
</style>
<![endif]-->Mike spoke about some of the client-side advantages of the upgrade that could be offered to the reps. He began researching offline domain join, which saves a reboot during the naming process of machines and could possibly work around a <a href="http://social.technet.microsoft.com/forums/en-US/itprovistadeployment/thread/777f61e0-ed27-46eb-be71-e46f075239d2/">bug affecting sysprep and domain joins</a>. Other departments who deploy labs could also benefit. <br /><br />One of the preparation steps will be to re-examine delegated permissions and determine if 2008 has any new offerings for the process. We plan on auditing the permissions of the security group which is applied to the "admin" OU's in order to standardize permissions across OU's.&nbsp; We discussed how it was not possible to "un-delegate" permissions, and that such permissions needed to be individually removed once granted. <br /><br />Finally, users and administration are curious about why we are upgrading and what the benefits will be. The reasons are evident in the research data we are collecting about the capabilities of Windows 2008, but it will take some extra effort to distill this amount of information into the most essential and compelling points to provide a cogent answer. <br /><p class="MsoNormal"><br /></p><p class="MsoNormal"><br /></p><p class="MsoNormal"> <br /></p>

<br /><br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>Quick Thoughts about Innovation</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/staff/remurphy/2009/10/quick-thoughts-about-innovatio.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/remurphy//36.1708</id>

    <published>2009-10-27T14:39:34Z</published>
    <updated>2009-10-27T14:47:10Z</updated>

    <summary><![CDATA[I thought maybe it was just a buzz word but I think it's one of those things that we'll constantly strive for - like global peace or peace of mind.&nbsp; I think innovation is just a fancy word for change...]]></summary>
    <author>
        <name>Erin Murphy</name>
        <uri>https://blogs.wharton.upenn.edu/staff/remurphy/</uri>
    </author>
    
        <category term="innovation" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="innovation" label="innovation" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="https://blogs.wharton.upenn.edu/staff/remurphy/">
        <![CDATA[I thought maybe it was just a buzz word but I think it's one of those things that we'll constantly strive for - like global peace or peace of mind.&nbsp; I think innovation is just a fancy word for change anyway - creative change.&nbsp; And change will always keep happening.&nbsp; <br /><br />Did you know there are <a href="http://doblin.com/AboutInno/innotypes.html">different types of innovation</a>?&nbsp; I came across this website and liked the way they laid out the different types.&nbsp; I think thinking of innovation as happening in these various sectors will help any business that wants to redefine itself.&nbsp; <br /><br />Here are some tips that creative businesses use to foster innovation amongst their employees.&nbsp; Thanks to Mary for sharing this with me!! <a href="http://www.inc.com/magazine/20080601/innovation-how-the-creative-stay-creative.html">Innovation:&nbsp; How the Creative Stay Creative</a>.&nbsp; <br /><br /><br /> ]]>
        
    </content>
</entry>

<entry>
    <title>Sims, Visuals, and the Surprising Power of CONNECTIONS</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/staff/remurphy/2009/10/sims-visuals-and-the-surprisin.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/remurphy//36.1707</id>

    <published>2009-10-22T14:35:48Z</published>
    <updated>2009-10-22T14:56:48Z</updated>

    <summary><![CDATA[People have been sharing information like crazy lately and I've been a ready and willing listener.&nbsp; More Wharton Professors are speaking out about games for learning and the possibility of making finance fun.&nbsp; People are unlocking the power of visuals...]]></summary>
    <author>
        <name>Erin Murphy</name>
        <uri>https://blogs.wharton.upenn.edu/staff/remurphy/</uri>
    </author>
    
        <category term="contemporary society" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="creativity" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="education" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="simulations" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="connections" label="connections" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="simulations" label="simulations" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="socialnetworking" label="social networking" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="visualliteracy" label="visual literacy" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="visuals" label="visuals" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="vizthink" label="vizthink" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="https://blogs.wharton.upenn.edu/staff/remurphy/">
        <![CDATA[People have been sharing information like crazy lately and I've been a ready and willing listener.&nbsp; <br /><br /><ul><li>More Wharton Professors are speaking out about games for learning and the possibility of <a href="http://www.baltimoresun.com/business/money/bal-bz.ml.ambrose04oct04,0,5187978.story">making finance fun</a>.&nbsp; <br /></li><li>People are unlocking the power of visuals paired with text by using Graphic Recording to make meetings more productive and engaging.&nbsp; (See <a href="http://www.imagethink.net/value/value.html">ImageThink</a>)</li><li>And scientists are revealing the ways that our social networks shape our lives (See the book <a href="http://www.connectedthebook.com/">Connected</a>)</li><li>Meanwhile educators in the classroom are redesigning curricula and <a href="http://www.youtube.com/user/newhumanities">incorporating more collaboration into class projects</a>.&nbsp; <br /></li><li>The last three bullet points were discovered at the <a href="http://philadelphia.vizthink.com/">VizThink Philly</a> meeting I attended last night.&nbsp; Check them out!! <br /></li></ul>These are all very positive developments!&nbsp; It seems like there's a trend towards collaboration, fun, and art!&nbsp; <br /><br />I was personally blown away by the discoveries in the book Connected.&nbsp; It has always seemed intuitive to me that through helping others we somehow help ourselves and by watching games like <a href="http://www.wharton.upenn.edu/learning/tragedy-of-the-tuna.cfm">TUNA</a> and <a href="http://www.wharton.upenn.edu/learning/opeq.cfm">OPEQ</a> here at Wharton I have witnessed firsthand that consistently acting in your own interest is a great way to destroy a world/equilibrium.&nbsp; By optimizing the conditions of a world, you actually optimize your own "profits."&nbsp; Connected seems to take this idea one step further.&nbsp; Take this example - Your friend is battling depression.&nbsp; Your friend's emotional turmoil will eventually seep into your own life even in some small way.&nbsp; You might think it's in your best interest to abandon that friend, but in the long run it's actually in your own best interest to try to help that friend rise out of the depression.&nbsp; <br /><br />It's kind of hopeful yet at the same time it instills on us a sense of responsibility to our fellow human beings that I think sometimes we'd rather not think about.&nbsp; At the same time, it made me think about "living by example" and that if you really work on optimizing your own life you'll be doing everyone around you a great service.&nbsp; <br /><br />Love yourself and the rest will follow.... <br /> ]]>
        
    </content>
</entry>

<entry>
    <title>Free money!</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/greencomputing/2009/10/free-money.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/greencomputing//77.1706</id>

    <published>2009-10-21T14:08:45Z</published>
    <updated>2009-10-21T14:11:23Z</updated>

    <summary> Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 /* Style Definitions */ table.MsoNormalTable {mso-style-name:&quot;Table Normal&quot;; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:&quot;&quot;; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; mso-ascii-font-family:Calibri; mso-ascii-theme-font:minor-latin; mso-fareast-font-family:&quot;Times New Roman&quot;; mso-fareast-theme-font:minor-fareast; mso-hansi-font-family:Calibri; mso-hansi-theme-font:minor-latin;...</summary>
    <author>
        <name>Cadence D Anderson</name>
        
    </author>
    
    <category term="grant" label="grant" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-us" xml:base="http://blogs.wharton.upenn.edu/greencomputing/">
        <![CDATA[<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="ProgId" content="Word.Document"><meta name="Generator" content="Microsoft Word 12"><meta name="Originator" content="Microsoft Word 12"><link rel="File-List" href="file:///C:%5CDOCUME%7E1%5Candersc%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml"><link rel="themeData" href="file:///C:%5CDOCUME%7E1%5Candersc%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx"><link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5Candersc%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml"><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:View>Normal</w:View>
  <w:Zoom>0</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:PunctuationKerning/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:DontGrowAutofit/>
   <w:SplitPgBreakAndParaMark/>
   <w:DontVertAlignCellWithSp/>
   <w:DontBreakConstrainedForcedTables/>
   <w:DontVertAlignInTxbx/>
   <w:Word11KerningPairs/>
   <w:CachedColBalance/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="&#45;-"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]--><style>
<!--
 /* Font Definitions */
 @font-face
	{font-family:"Cambria Math";
	panose-1:2 4 5 3 5 4 6 3 2 4;
	mso-font-charset:1;
	mso-generic-font-family:roman;
	mso-font-format:other;
	mso-font-pitch:variable;
	mso-font-signature:0 0 0 0 0 0;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;
	mso-font-charset:0;
	mso-generic-font-family:swiss;
	mso-font-pitch:variable;
	mso-font-signature:-1610611985 1073750139 0 0 159 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-unhide:no;
	mso-style-qformat:yes;
	mso-style-parent:"";
	margin:0in;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-fareast-font-family:Calibri;
	mso-fareast-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";}
a:link, span.MsoHyperlink
	{mso-style-noshow:yes;
	mso-style-priority:99;
	color:blue;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
	{mso-style-noshow:yes;
	mso-style-priority:99;
	color:purple;
	mso-themecolor:followedhyperlink;
	text-decoration:underline;
	text-underline:single;}
.MsoChpDefault
	{mso-style-type:export-only;
	mso-default-props:yes;
	font-size:10.0pt;
	mso-ansi-font-size:10.0pt;
	mso-bidi-font-size:10.0pt;}
@page Section1
	{size:8.5in 11.0in;
	margin:1.0in 1.0in 1.0in 1.0in;
	mso-header-margin:.5in;
	mso-footer-margin:.5in;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
-->
</style><!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-qformat:yes;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin:0in;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-fareast-font-family:"Times New Roman";
	mso-fareast-theme-font:minor-fareast;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
</style>
<![endif]-->

<p class="MsoNormal">Well, nothing's free, of course.</p><p class="MsoNormal">But here's a chance to get funding for a Penn greening project:<br /><span style="color: rgb(31, 73, 125);"></span></p><p class="MsoNormal"><span style="color: rgb(31, 73, 125);"><a href="http://www.upenn.edu/pennnews/article.php?id=1731"><br /></a></span></p><p class="MsoNormal"><span style="color: rgb(31, 73, 125);"><a href="http://www.upenn.edu/pennnews/article.php?id=1731">http://www.upenn.edu/pennnews/article.php?id=1731</a><o:p></o:p></span></p>

 ]]>
        
    </content>
</entry>

<entry>
    <title>A Whole New Mind-Inspired Event: Creating and Collaborating across Universities</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/staff/remurphy/2009/10/a-whole-new-mind-inspired-even.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/remurphy//36.1705</id>

    <published>2009-10-20T15:34:47Z</published>
    <updated>2009-10-20T15:48:41Z</updated>

    <summary><![CDATA[In his book A Whole New Mind, Daniel Pink writes, "What's in greatest demand today isn't analysis but synthesis -- seeing the big picture, crossing boundaries, and being able to combine disparate pieces into an arresting new whole."&nbsp; But perhaps...]]></summary>
    <author>
        <name>Erin Murphy</name>
        <uri>https://blogs.wharton.upenn.edu/staff/remurphy/</uri>
    </author>
    
        <category term="contemporary society" scheme="http://www.sixapart.com/ns/types#category" />
    
        <category term="creativity" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="brainstorming" label="brainstorming" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="collaboration" label="collaboration" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="danielpink" label="daniel pink" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="incubationstation" label="incubation station" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="universitycollboration" label="university collboration" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="weisstechhouse" label="weiss tech house" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="https://blogs.wharton.upenn.edu/staff/remurphy/">
        <![CDATA[<p>In his book <a href="http://www.amazon.com/Whole-New-Mind-Right-Brainers-Future/dp/1594481717/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1253291238&amp;sr=8-1">A Whole New Mind</a>, Daniel Pink writes, "What's in greatest demand today isn't analysis but synthesis -- seeing the big picture, crossing boundaries, and being able to combine disparate pieces into an arresting new whole."&nbsp; But perhaps one of the more perplexing issues facing all members of the current university community involves finding an adequate way to collaborate with the disparate university pieces to form an arresting new whole.&nbsp; How do we collaborate both across departments and across institutions?&nbsp; </p>  <p>Various members of the Penn Community (with a large showing from the <a href="http://www.gse.upenn.edu/">Graduate School of Education</a>) met to try to answer this question in a rather unorthodox setting.&nbsp; We met in <a href="http://www.tech-house.upenn.edu/dynamic/site/programs/complab.php">Incubation Station #1</a> at the <a href="http://www.tech-house.upenn.edu/dynamic/site/about/index.php">Weiss Tech House</a>.&nbsp; It's a 180 square foot room equipped with all of the necessary tools for a real brainstorming session including wall-to-wall whiteboards.&nbsp; We met with the mindset of having a REAL brainstorming session which Dan Pink describes as adhering to the following guidelines:</p>  <p>1.&nbsp; <em>Go for Quantity</em>.&nbsp; Good ideas emerge from lots of ideas.&nbsp; Set a numerical goal.</p>  <p>2.&nbsp; <em>Encourage Wild Ideas</em>.&nbsp; Extremism is a virtue.&nbsp; The right idea often flows from what initially seems outlandish.&nbsp; </p>  <p>3.&nbsp; <em>Be visual</em>.&nbsp; Pictures unlock creativity.</p>  <p>4.&nbsp; <em>Defer Judgment</em>.&nbsp; There's no such thing as a bad idea, so banish the naysayers.&nbsp; Think creatively first and critically later. </p>  <p>5.&nbsp; <em>One Conversation at a Time</em>.&nbsp; Listen, be polite, and build on others' suggestions.&nbsp; </p>  <p>In order to get to know one another and to encourage creativity, we started off with an ice breaker where everyone had a minute and a half to draw a visual depiction of themselves on the whiteboard.&nbsp; Interestingly there were a lot of smiley faces on the board with various objects surrounding them - leading me to believe that at the very least, we were a happy group of people.&nbsp; Some others drew abstract images that represented more personal facets of their lives.&nbsp; All in all, it was a good opening exercise.&nbsp; </p>  <p><strong>What is Collaboration?</strong></p>  <p>After the ice breaker, we decided to define what exactly we meant by collaboration.&nbsp; We started off with the dictionary definition, "to work jointly with others or together especially in an intellectual endeavor" and then proceeded with some of our own definitions and thoughts on the word:</p>  <p>-two heads are better than one</p>  <p>-emphasis on process - how will collaboration happen?</p>  <p>-products grow out of the process (ie. If I do X and you do Y we might create Z)</p>  <p>-what do we mean by together - negotiation?&nbsp; teamwork?&nbsp; </p>  <p>-not always an intellectual endeavor</p>  <p>-working towards a common goal</p>  <p>-willingness to cooperate (how do you foster the willingness?)</p>  <p>-what's the difference between cooperation vs. collaboration vs. competition?&nbsp; Cooperation sounds more forced than collaboration.&nbsp; Competition can be positive when it fosters collaboration but it can also be negative.</p>  <p>-taking ownership over the project; buy in and investment of the group</p>  <p><a href="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/what_is_Collaboration2.jpg"><img style="border-width: 0px;" alt="what_is_Collaboration2" src="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/what_is_Collaboration2_thumb.jpg" border="0" height="244" width="184" /></a> <a href="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/what_is_Collboration1.jpg"><img style="border-width: 0px;" alt="what_is_Collboration1" src="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/what_is_Collboration1_thumb.jpg" border="0" height="244" width="184" /></a> </p>  <p><strong>Why Collaborate?&nbsp; What are the Benefits?</strong></p>  <p>Next, we tackled the question - why would we want to collaborate as opposed to working alone?&nbsp; </p>  <p>-efficiency</p>  <p>-more connections and applications of discoveries</p>  <p>-gateway to each others' worlds </p>  <p>-minds function at quicker rate together</p>  <p>-more effective and integrated solutions</p>  <p>-improve interpersonal skills and build community</p>  <p>-breaking down prejudices or biases </p>  <p>-self awareness - things about yourself are reflected back to you by others </p>  <p>-more sense of ownership:&nbsp; responsibility to group; social quality check</p>  <p><a href="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/benefits_of_Collab1.jpg"><img style="border-width: 0px;" alt="benefits_of_Collab1" src="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/benefits_of_Collab1_thumb.jpg" border="0" height="244" width="184" /></a> <a href="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/benefits_of_collab2.jpg"><img style="border-width: 0px;" alt="benefits_of_collab2" src="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/benefits_of_collab2_thumb.jpg" border="0" height="184" width="244" /></a> <a href="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/benefits_of_collab3.jpg"><img style="border-width: 0px;" alt="benefits_of_collab3" src="https://blogs.wharton.upenn.edu/staff/remurphy/WindowsLiveWriter/AWholeNewMindInspiredEventCreatingandCol_E8F8/benefits_of_collab3_thumb.jpg" border="0" height="184" width="244" /></a> </p>  <p><strong>How Do We Collaborate Already?</strong></p>  <p>We took a break from the whiteboards for a while and talked about ways that we already collaborate at work, at home, in the classroom, and in various other domains of our lives.&nbsp; The answers ranged from cooking to study groups to carpooling with other parents to take kids to nursery school.&nbsp; </p>  <p><strong>How Can We Collaborate More Across Campus and Across Universities?</strong></p>  <p>For this final question we set an idea destination number of 50 and enthusiastically reached our limit plus some extras.&nbsp; We didn't hold back and we embraced each idea with an open mind knowing the potential that each thought held for making the university a more collaborative environment.&nbsp; We tried to address the issue that universities are often "silo-ed" or that each department and school tends to act as a separate entity as opposed to part of a larger whole.&nbsp; The ideas range from crazy and silly to serious with the potential to be implemented.&nbsp; </p>  <p>1.&nbsp; Eliminate the school name in email addresses so that we all come from Penn.</p>  <p>2.&nbsp; Shut down the university operations for 2 hours ever 2 weeks for collaboration.</p>  <p>3.&nbsp; Rotating showcase of different departments.&nbsp; </p>  <p>4.&nbsp; Self awareness training (if you know yourself you'll be better able to collaborate)</p>  <p>5.&nbsp; Requirements to walk to other departments/offices</p>  <p>6.&nbsp; Library walk/crawl (kind of like a bar crawl to the different libraries on campus - could have wine and cheese!)</p>  <p>7.&nbsp; Security access to other departments/buildings.&nbsp; </p>  <p>8.&nbsp; Mingling events</p>  <p>9.&nbsp; More intramural sports</p>  <p>10.&nbsp; Projects that require interdisciplinary research</p>  <p>11.&nbsp; University wide scavenger hunts (with prizes!)</p>  <p>12.&nbsp; Big issue web list</p>  <p>13.&nbsp; Book/crafts clubs</p>  <p>14.&nbsp; Master schedule of EVERYTHING going on across the university</p>  <p>15.&nbsp; Take all signs off buildings so people are forced to ask one another where they are.</p>  <p>16.&nbsp; Sharing of common resources </p>  <p>17.&nbsp; More informal meetings </p>  <p>18.&nbsp; Do away with agendas (on occasion)</p>  <p>19.&nbsp; Free/unadvertised events (like an ice cream social!)</p>  <p>20.&nbsp; Encourage people to talk to strangers across the university</p>  <p>21.&nbsp; Campus-wide ice breaker questions</p>  <p>22.&nbsp; Free lunch extended </p>  <p>23.&nbsp; Teach time management so that we have more time for collaboration</p>  <p>24.&nbsp; Bring friends to events</p>  <p>25.&nbsp; Incentivise student interaction</p>  <p>26.&nbsp; Business cards with random facts/information about yourself (more than just your title)</p>  <p>27.&nbsp; Contest for collection of business cards (like pokemon - gotta catch em all!)</p>  <p>28.&nbsp; Collectivise goals (Why are we here?&nbsp; What is Penn's mission and how are we each contributing to that mission?)&nbsp; </p>  <p>29.&nbsp; Special credits for collaborating </p>  <p>30.&nbsp; Hold events outside of business hours</p>  <p>31.&nbsp; Class credit for collaboration</p>  <p>32.&nbsp; Defining collaboration events.&nbsp;&nbsp;</p><p>33.&nbsp; Budget allocation for collaboration.</p><p>34.&nbsp; Weekend events for international students.</p><p>35.&nbsp; Day care for events so that more people can participate. <br /></p><p>36.&nbsp; Grants for faculty collaboration</p><p>37.&nbsp; Establish a department of collaboration.</p><p>38.&nbsp; Integrate student housing</p><p>39.&nbsp; Meetings for multiple schools to breed ideas</p><p>40.&nbsp; Craigslist style list for collaboration.&nbsp; (ie. someone could post their idea and ask for help and others could respond who were interested in the same topic)</p><p>41.&nbsp; Second life style collaboration</p><p>42.&nbsp; Universal tags <br /></p><p>43.&nbsp; Failure resumes of fellow employees</p><p>44.&nbsp; Werenotperfect.com (to share imperfections)</p><p>45.&nbsp; School style gang colors - to get to know people from different schools.</p><p>46.&nbsp; Costume Party</p><p>47.&nbsp; Cross school art activities</p><p>48.&nbsp; Rebuildable buildings activity - to get to know the campus</p><p>49.&nbsp; Across Penn Socials/ Library Social (library socials already take place!)</p><p>50.&nbsp; Locust Walk Block Party</p><p>51.&nbsp; Experimental College</p><p>52.&nbsp; Repository for funny responses&nbsp;</p><p><a href="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab1-690.html" onclick="window.open('https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab1-690.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab1-thumb-300x400-690.jpg" alt="ways_2_collab1.JPG" class="mt-image-none" style="" height="400" width="300" /></a></p><p><a href="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab4-693.html" onclick="window.open('https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab4-693.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab4-thumb-300x400-693.jpg" alt="ways_2_collab4.JPG" class="mt-image-none" style="" height="400" width="300" /></a></p><p><a href="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab5-696.html" onclick="window.open('https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab5-696.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab5-thumb-300x400-696.jpg" alt="ways_2_collab5.JPG" class="mt-image-none" style="" height="400" width="300" /></a></p><p><a href="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab6-699.html" onclick="window.open('https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab6-699.html','popup','width=1536,height=2048,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false"><img src="https://blogs.wharton.upenn.edu/staff/remurphy/assets_c/2009/10/ways_2_collab6-thumb-300x400-699.jpg" alt="ways_2_collab6.JPG" class="mt-image-none" style="" height="400" width="300" /></a></p><p><font style="font-size: 1.25em;"><b><font style="font-size: 1.25em;">Can you think of more ways to collaborate????</font></b></font><br /></p>]]>
        
    </content>
</entry>

<entry>
    <title>Is the iPhone the Next Windows or the Next Mac?</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/is-the-iphone-the-next-windows-or-mac.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/kendallwhitehouse//23.1704</id>

    <published>2009-10-18T15:54:26Z</published>
    <updated>2009-10-18T19:51:25Z</updated>

    <summary><![CDATA[The announcements at Adobe's MAX 2009 conference earlier this month have reignited the conversation about Flash on the iPhone -- whether it will ever happen and, if not, why not.&nbsp;At the conference, Adobe announced plans to bring Flash 10 to...]]></summary>
    <author>
        <name>Kendall Whitehouse</name>
        <uri>http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/</uri>
    </author>
    
        <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="appleadobeiphone" label="apple adobe iphone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/">
        <![CDATA[<img alt="iphone-mac-win.jpg" src="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/18/iphone-mac-win.jpg" width="352" height="397" class="mt-image-left" style="float: left; margin: 0 20px 20px 0;" /><div>The announcements at Adobe's MAX 2009 conference earlier this month have reignited the conversation about Flash on the iPhone -- whether it will ever happen and, if not, why not.&nbsp;</div><div><br /></div><div>At the conference, Adobe <a href="http://www.adobe.com/aboutadobe/pressroom/pressreleases/200910/100509AFPforMobileDevicesandPCs.html">announced</a> plans to bring Flash 10 to all the major mobile platforms -- except the iPhone. In order to have some story regarding Flash and the iPhone, Adobe also <a href="http://eon.businesswire.com/portal/site/eon/permalink/?ndmViewId=news_view&amp;newsId=20091005006358&amp;newsLang=en">announced</a> that a forthcoming version of Flash Professional will allow developers to create iPhone applications. As many commentators have pointed out, however, these programs will compile to native iPhone apps in order to run on the device. Adobe still has no solution for enabling the iPhone to render Flash content delivered over the web.&nbsp;</div><div><br /></div><div>In an article on InsideRIA titled "<a href="http://www.insideria.com/2009/10/could-adobe-potentially-harm-t.html">Could Adobe Potentially Harm the iPhone AppStore</a>"&nbsp;Scott Barnes outlines the hurdles Adobe faces in attempting to get Flash on Apple's iPhone, and points out that "[To] Apple [the] iPhone is the same as Windows is to Microsoft."&nbsp;</div><div><br /></div><div>As odd as it may seem to compare Apple's vaunted iPhone with Microsoft's oft-pilloried operating system, the point is that the iPhone (along with iTunes and Apple's App Store) is at the center of Apple's product integration strategy. It is the thin end of the wedge Apple plans to use to expand into new markets and to move its customers onto a broader collection of Apple products. As Barnes states, "All gravity orbits around the iPhone now for Apple."</div><div><br /></div><a href="http://www.flickr.com/photos/15543694@N06/tags/adobemax2009/"><img alt="lynch-max-press-w240.jpg" src="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/18/lynch-max-press-w240.jpg" width="240" height="134" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a><div>At a press event at Adobe's MAX conference, Adobe CTO Kevin Lynch offered a very different metaphor for the iPhone. Lynch compared the current competition in the mobile space to that of the early days of the personal computer, stating that the "[companies] that are playing well with others will get the largest market share." Although he didn't mention any firms by name, the implication is that the iPhone will follow the trajectory of Apple's Macintosh computer to become a product that, while beloved by many, occupies a relatively small market niche.&nbsp;</div><div><br /></div><div>To some extent, this is another example of Adobe's public confrontation of Apple regarding their refusal to help to implement Flash on the iPhone (see "<a href="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/adobes-new-attitude.html">Adobe's New 'In Your Face' Attitude</a>"). But it is also a statement of Adobe's philosophy for success.&nbsp;By partnering with multiple companies, Adobe hopes to establish a cross-platform solution for application development, much as they have done with PostScript, PDF, and Flash on the PC. In the mobile space, Adobe believes that by supporting products like Flash and Adobe's AIR, mobile devices can spawn a rich ecosystem for both developers and consumers.&nbsp;</div><div><br /></div><div>The IBM/Intel/Microsoft architecture did, indeed, succeed in large part because of the ecosystem it fostered. The relatively open hardware and software platform attracted the largest contingent of developers, which provided the largest selection of software, which appealed to a widest swath of customers, which attracted more developers. And, thus, this virtuous cycle fueled its own growth.&nbsp;</div><div><br /></div><div>In the mobile space, however, it is the iPhone that is benefiting from this beneficial feedback loop. Although Apple's device does not hold the greatest <a href="http://www.appleinsider.com/articles/09/08/21/canalys_iphone_outsold_all_windows_mobile_phones_in_q2_2009.html">market share&nbsp;of smartphones</a>&nbsp;globally -- that honor goes to Nokia's Symbian operating, followed by RIM's BlackBerry -- Apple does have the largest selection of software. According to a <a href="http://online.wsj.com/article/SB20001424052748704107204574473423239117900.html">recent tally</a> by the <i>Wall Street Journal's</i> Walt Mossberg, there are 85,000 applications for the iPhone while there are only 10,000 for Google's Android, 3,000 for the newer models of the RIM BlackBerry, only "a few hundred modern apps" for Windows Mobile, and even fewer for the Palm Pre.</div><div><br /></div><div>Apple has managed to become the "Windows of mobile" with<i>out</i>&nbsp;offering an open architecture, and has fostered the largest ecosystem of developers while retaining tight vertical integration of its products.&nbsp;</div><div><br /></div><div>Apple has cleverly straddled the fence between an open and a closed strategy by providing a smattering of cross-platform support while assuring the best experience on Apple's own products. Sure, you can install iTunes on a PC -- but it's smoother experience on a Mac. And it only syncs with Apple's iPod and iPhone devices.&nbsp;</div><div><br /></div><div>To date, this hybrid "slightly open but vertically integrated" strategy has worked well for Apple. Will it continue to do so? Adobe's Lynch thinks not, believing a more open (or, at least, cross-vendor) approach will eventually succeed. What do you think? Have we reached a tipping point that assures Apple's continued success, or are we are still in the early stages of the evolution of smartphone platforms? Is the iPhone destined to become the next Windows or the next Mac?</div><div><br /></div><div><br /></div> ]]>
        
    </content>
</entry>

<entry>
    <title>Getting Started with DPM</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/staff/jameslp/2009/10/getting-started-with-dpm.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/jameslp//80.1703</id>

    <published>2009-10-15T18:59:34Z</published>
    <updated>2009-10-16T14:51:44Z</updated>

    <summary>I am working on bringing Microsoft Data Protection Manager (DPM) on board to handle some of Core Systems&apos; disk to disk backup needs for the file server. Later, we would have the option to leverage some of its powerful application-aware...</summary>
    <author>
        <name>Jamie Pemantell</name>
        
    </author>
    
    <category term="backup" label="backup" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="dpm" label="dpm" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="storage" label="storage" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en-us" xml:base="http://blogs.wharton.upenn.edu/staff/jameslp/">
        <![CDATA[I am working on bringing <a href="http://technet.microsoft.com/en-us/dpm/bb798076.aspx">Microsoft Data Protection Manager</a> (DPM) on board to handle some of Core Systems' disk to disk backup needs for the file server. Later, we would have the option to leverage some of its powerful application-aware abilities for MS products such as SharePoint, Exchange, SQL server, and Hyper-V. <br /><br />DPM uses Microsoft's Volume Shadow Copy technology to provide continuous data protection using point-in-time snapshots. The data is only copied once, after which <a href="http://technet.microsoft.com/en-us/library/bb808898.aspx">changes are moved at the block level</a> to volumes on the DPM server according to a schedule and a recovery point is created. This makes disk to disk recoveries fast and efficient and uses less storage.&nbsp; <br /><br />For long term retention, the product has drivers to <a href="http://www.microsoft.com/systemcenter/dataprotectionmanager/en/us/tape-libraries.aspx">directly interface with tape backup machinery</a>, and customers also use existing <a href="http://technet.microsoft.com/en-us/library/bb809019.aspx">3rd party disk-to-tape backup solutions</a>. In our case, we are interested specifically in tape solely for disaster recovery purposes in the event of a catastrophic SAN failure. Also, it is important to schedule 3rd party tape backups at a time when data is not being copied to the DPM server. The dynamic partitioning scheme utilized by DPM could run into problems if it is trying to write to the volume while an agent is backing up. <br /><br />DPM uses agents, which are pushed out from DPM Agent Coordinator to target those clients which will be backed up. The process of deploying and updating the clients is native to DPM and a separate application such as SCCM is not required, but can be used optionally. Notably, the client must be restarted after an agent update, so we'd need to install and then plan the reboot during scheduled maintenance. <br /><br />I learned that DPM runs well virtualized (on VMware or Hyper-V) as long is it is allocated the true <a href="http://technet.microsoft.com/en-us/library/bb808861.aspx">minimum hardware specifications</a> as if it were a physical box.Since DPM is I/O hungry, parititioning 1 spindle into four drives is the type of shortcut that will lead to performance problems. For DPM 2007, 2TB maximum size for SAN LUN's is recommended. <br /><br /><a href="http://technet.microsoft.com/en-us/library/bb795541.aspx">Windows PowerShell</a> is central to the product and all functions available in the GUI can be scripted with PowerShell, as well as some tasks that can be performed exclusively through scripting. <br /><br />A couple of more facts about DPM that will require additional research:<br /><ul><li>Requires an Active Directory <a href="http://technet.microsoft.com/en-us/library/bb795762.aspx">Schema Extension</a>. </li><li>Can be <a href="http://technet.microsoft.com/en-us/library/bb969016.aspx">managed with System Center Operations Manager</a>. </li><li>A feature called <a href="http://technet.microsoft.com/en-us/library/bb795839.aspx">System Recovery Tool</a> (SRT) is included which is used for bare-metal restores. <br /></li></ul>It is a complex product, and this a very general introduction to some of its main functionality.&nbsp; I have documented the resources provided by our TAM on my <a href="http://blogs.wharton.upenn.edu/staff/jameslp/links-to-data-protection-manager-documentation-and-resources.html">Links to DPM Documentation and Resources</a> page, which I plan on updated regularly. Also, I will post more in-depth articles about specific features and my experiences with the product, as well as details about our deployment planning over time. <br /><br /><br /><br /><br />]]>
        
    </content>
</entry>

<entry>
    <title>Wow, That is a growing Baby!</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/datacenter/2009/10/wow-that-is-a-growing-baby.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/datacenter//51.1702</id>

    <published>2009-10-14T20:06:33Z</published>
    <updated>2009-10-14T20:06:36Z</updated>

    <summary>So, we have been in our new Data Center for just over 1 calendar year and wanted publish some of the growth numbers we have seen. &#160; Start: Oct. &apos;08 Total Rack space in &quot;U&quot; : 672 Allocated &quot;U&quot; :...</summary>
    <author>
        <name>Michael Adelman</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-us" xml:base="https://blogs.wharton.upenn.edu/datacenter/">
        <![CDATA[<p>So, we have been in our new Data Center for just over 1 calendar year and wanted publish some of the growth numbers we have seen.</p>  <p>&#160;</p>  <p><strong><u>Start: Oct. '08</u></strong></p>  <ul>   <li>Total Rack space in "U" : 672</li>    <li>Allocated "U" : 285</li>    <li>UPS A (KVA) : 20</li>    <li>UPS B (KVA) : 21</li> </ul>  <p>&#160;</p>  <p><strong><u>Current: Oct. '09</u></strong></p>  <ul>   <li>Total Rack space in "U" : 672</li>    <li>Allocated "U" : 522</li>    <li>UPS A (KVA) : 26</li>    <li>UPS B (KVA) : 28</li> </ul>  <p>&#160;</p>  <p>So we have grown in used physical space by 237 U or 35% growth.&#160; Our power consumption has grown also, but not at the same pace, which makes sense with newer equipment that is more energy efficient.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Data Center Amber Notices 10/14/2009</title>
    <link rel="alternate" type="text/html" href="https://blogs.wharton.upenn.edu/datacenter/2009/10/data-center-amber-notices-1014.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/datacenter//51.1701</id>

    <published>2009-10-14T19:55:11Z</published>
    <updated>2009-10-14T19:55:15Z</updated>

    <summary>Hello all, its been awhile since I have posted the Amber&apos;s that were found by Core-Systems in the Data Centers.&#160; For those that don&apos;t know, ambers are the warning lights that exist on hardware to tell us when something is...</summary>
    <author>
        <name>Michael Adelman</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-us" xml:base="https://blogs.wharton.upenn.edu/datacenter/">
        <![CDATA[<p>Hello all, its been awhile since I have posted the Amber's that were found by Core-Systems in the Data Centers.&#160; For those that don't know, ambers are the warning lights that exist on hardware to tell us when something is broke, or not working properly.</p>  <p>&#160;</p>  <p><u><strong>Vance 212</strong></u></p>  <blockquote>   <p>Google2 </p> </blockquote>  <p>&#160;</p>  <p>If you have any questions, please feel free to contact <a href="mailto:core-systems@wharton.upenn.edu">core-systems@wharton.upenn.edu</a>.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Adobe&apos;s New &apos;In Your Face&apos; Attitude</title>
    <link rel="alternate" type="text/html" href="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/adobes-new-attitude.html" />
    <id>tag:blogs.wharton.upenn.edu,2009:/staff/kendallwhitehouse//23.1700</id>

    <published>2009-10-12T10:15:02Z</published>
    <updated>2009-10-17T11:41:12Z</updated>

    <summary>The keynote addresses at Adobe Systems&apos; MAX developer&apos;s conference this past week in Los Angeles contained the usual spate of product intros and partner announcements, including Adobe&apos;s plans to bring the Flash Player to most of the major smartphone platforms...</summary>
    <author>
        <name>Kendall Whitehouse</name>
        <uri>http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/</uri>
    </author>
    
        <category term="technology" scheme="http://www.sixapart.com/ns/types#category" />
    
    <category term="adobe" label="adobe" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="adobemax2009" label="adobe max 2009" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="apple" label="apple" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="flash" label="flash" scheme="http://www.sixapart.com/ns/types#tag" />
    <category term="iphone" label="iphone" scheme="http://www.sixapart.com/ns/types#tag" />
    
    <content type="html" xml:lang="en" xml:base="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/">
        <![CDATA[<img alt="adobe-logo-banner.jpg" src="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/12/adobe-logo-banner.jpg" width="520" height="182" class="mt-image-center" style="text-align: center; display: block; margin: 0 auto 20px;" /><div>The keynote addresses at Adobe Systems' MAX developer's conference this past week in Los Angeles contained the usual spate of product intros and partner announcements, including Adobe's plans to bring the Flash Player to most of the major smartphone platforms -- RIM, Symbian, Windows Mobile, Google's Android, and Palm's webOS. Apple's iPhone was, of course, conspicuously absent from the list of mobile partners.&nbsp;</div><div><br /></div><div>Most of this wasn't news. As we <a href="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/06/adobe-flash-player-on-smartphones.html">reported</a> at the time, Adobe CEO Shantanu Narayen announced that Adobe had successfully ported Flash Player 10 to four of these mobile platforms&nbsp;in an Adobe Systems earnings call back in June. The addition of RIM is the only real news in the announcement.&nbsp;</div><div><br /></div><div>What is new, however, is Adobe's public stance regarding Apple and the iPhone. Frustrated by its inability to deliver Flash to the iPhone, Adobe has apparently decided to stop being coy and lay the problem squarely on Apple's doorstep in a very public way.&nbsp;</div><div><br /></div><div>Evidence of Adobe's more aggressive attitude was apparent throughout the conference.&nbsp;</div><div><br /></div><a href="http://www.youtube.com/watch?v=ZNtTfFDena4"><img alt="" src="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/12/mythhackers-w240.jpg" width="240" height="135" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a><div>In Monday's keynote Adobe debuted a video titled "MythHackers," a parody of the MythBusters television show with Adobe CTO Kevin Lynch and Creative Solutions senior vice president Johnny Loiacono in the roles of the intrepid myth busters.</div><div><br /></div><div>Lynch and Loiacono read a letter from "Steve from Cupertino" who says he has heard that "it's not possible to run Flash on the iPhone." The myth hackers exclaim, "There's got to be an app for that!" and set out to "hack" the myth.&nbsp;</div><div><br /></div><div>At the end of the clip, Adobe reveals what was perhaps the keynote's biggest surprise: an upcoming version of Flash Professional will allow developers to use Flash and ActionScript to build native iPhone applications.&nbsp;</div><div><br /></div><div>In the video, the myth hackers triumphantly declare the myth about Flash on the iPhone "hacked." But it's not. Adobe didn't announce that Flash will run on the iPhone. The applications created using Flash Pro are native iPhone apps, not SWF files interpreted by the Flash runtime. While this may be a boon to Flash developers who want to code iPhone applications, it doesn't resolve the issue of enabling the iPhone to access Flash web content.&nbsp;</div><div><br /></div><div>To a large extent the announcement was a political move to do something -- anything -- to have a story about Flash on the iPhone (even if it doesn't actually involve Flash <i>on</i> the iPhone).&nbsp;</div><div><br /><a href="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/2009/10/12/flash-player-iphone-message.jpg"><img alt="flash-player-iphone-message.jpg" src="http://blogs.wharton.upenn.edu/staff/kendallwhitehouse/assets_c/2009/10/flash-player-iphone-message-thumb-240x360-673.jpg" width="240" height="360" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></a>Adobe's tweaking of Apple didn't stop there. Adobe recently changed the message iPhone users receive when they go to Adobe's web page to install Flash. The text states:&nbsp;</div><div><br /></div><div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><b>Flash Player not available for your device</b></blockquote></div><div><br /></div><div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;">Apple restricts use of technologies required by products like Flash Player. Until Apple eliminates these restrictions, Adobe cannot provide Flash Player for the iPhone or iPod Touch.&nbsp;</blockquote></div><div><br /></div><div>That's certainly unambiguous.&nbsp;</div><div><br /></div><div>This "in your face" attitude wouldn't be surprising coming from most technology companies. An aggressive stance vis-à-vis competitors is common among high tech companies from <a href="http://blogs.zdnet.com/BTL/?p=25794">Oracle</a> and <a href="http://www.customerthink.com/article/five_problems_will_thwart_salesforce">SalesForce.com</a> to <a href="http://www.businessweek.com/microsoft/updates/up81021a.htm">Microsoft</a>, <a href="http://knowledge.wharton.upenn.edu/article.cfm?articleid=2330">Google</a>, and, yes, <a href="http://en.wikipedia.org/wiki/1984_(advertisement)">Apple</a> as well.&nbsp;</div><div><br /></div><div>But this type of direct challenge is a change of tone for Adobe. While the company competes with companies both big and small, it typically strives to fly under the radar of its major competitors and to make friends with everyone else. As then CEO Bruce Chizen <a href="http://knowledge.wharton.upenn.edu/article.cfm?articleid=967">explained</a> to Knowledge@Wharton back in 2004 regarding the company's relationship with its biggest competitor, Microsoft, "We get to partner with all of Microsoft's enemies, because we're a great alternative, and we don't really compete head-on with any of their big competitors."&nbsp;</div><div><br /></div><div>Adobe's new tone regarding Apple -- a partner of the company throughout many of its early years -- underscores how critical the issue is for the company. In a conversation with the press during the MAX conference, CTO Kevin Lynch was asked about Flash on the iPhone yet again and stated "Flash needs to get there to remain relevant on the web."&nbsp;</div><div><br /></div><div>The key question about Adobe's new tact is: Will it work? Does this approach make it more or less likely we'll see Flash on the iPhone anytime soon?</div><div><br /></div><div>One can appreciate Adobe's desire to clarify to its customers and developers what it sees as the source of the problem. Its bolder statements on the matter will help to achieve that goal.&nbsp;</div><div><br /></div><div>But it will also raise the ire of Apple and Steve Jobs. The word on the street is that Jobs holds a grudge for a long time. In this regard, Adobe's approach may make a bad situation worse. The fact that the company has taken these steps -- despite their political cost -- indicates the depth of its frustration over this issue.&nbsp;</div><div><br /></div><div>Ultimately, Adobe's strongest tactic is its mobile partnerships with everyone except Apple. Once the full version of Flash is available for RIM, Symbian, Windows Mobile, Android, and Palm's webOS, it will leave Apple as the singular&nbsp;outlier. For Adobe and its partners, implementation is the best revenge.&nbsp;</div><div><br /></div><div><div><font class="Apple-style-span" style="font-size: 0.8em; "><a href="http://twitpic.com/kf361">Screenshot</a>&nbsp;of iPhone message courtesy of <a href="http://timheuer.com/blog/">Tim Heuer</a>. Used with permission.</font>&nbsp;</div><div><br /></div></div><div><br /></div> ]]>
        
    </content>
</entry>


</feed>
