<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Intel vPro Expert Center Blog</title>
    <link>http://communities.intel.com/community/openportit/vproexpert/blog</link>
    <description>Intel vPro Expert Center Blog</description>
    <pubDate>Wed, 11 Nov 2009 21:03:38 GMT</pubDate>
    <generator>Clearspace 2.5.9 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-11-11T21:03:38Z</dc:date>
    <item>
      <title>Finding AMT Objects in Active Directory</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2009/11/11/finding-amt-objects-in-active-directory</link>
      <description>&lt;!-- [DocumentBodyStart:86ca5a0e-8d58-418e-84f7-9149dd021627] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;If you are using Out Of Band (OOB) Management in Microsoft System Center Configuration Manager (SCCM) 2007 SP1 (or greater) to manage your Intel vPro clients, you may have noticed that computer objects are created in your Active Directory domain during provisioning of the Intel vPro firmware. These computer objects are created by the &lt;em&gt;amtproxymgr&lt;/em&gt; component of an OOB Service Point, and allow Intel vPro to communicate directory with Active Directory, regardless of the operating system state.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;Since these vPro computer objects appear very similar to standard computer objects that are created when joining a Windows OS to an AD domain, it may be hard to distinguish which ones are vPro accounts, and which ones aren't. This situation can be worsened if you somehow have Windows computer accounts mixed into the same OU that contains your AMT objects.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;As you'll see below, it's very easy to locate these computers using some simple PowerShell code:&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: courier new,courier; color: #0000ff; font-size: 10pt;"&gt;$vprosearcher = [adsisearcher]"(&amp;amp;(objectclass=computer)(serviceprincipalname=*:16993*)(samaccounttype=805306368))"&lt;br/&gt;$vproaccounts = $vprosearcher.FindAll()&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="background-color: #f9fcf6;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;These two lines of code simply create a &lt;em&gt;System.DirectoryServices.DirectorySearcher&lt;/em&gt; instance, with some LDAP search criteria to identify the accounts, and then assigns the results of this search to a PowerShell variable called &lt;span style="color: #800080; font-size: 10pt;"&gt;$vproaccounts&lt;/span&gt;. The default search root is the top-level of your Active Directory domain, and the default search scope is already set to SubTree, so you don't have to specifically configure these settings on the &lt;em&gt;DirectorySearcher&lt;/em&gt;. Once you're at this point, you can simply enumerate the accounts, or pipe the results into a PowerShell &lt;em&gt;ForEach&lt;/em&gt; loop, and perform some operation against them (for example, givem them a &lt;em&gt;Description&lt;/em&gt; attribute value).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Because this code sample uses the "adsisearcher" &lt;a class="jive-link-external-small" href="http://blogs.msdn.com/powershell/archive/2006/07/12/type-shortcuts.aspx"&gt;type accelerator&lt;/a&gt; (aka. type shortcut), it will only work with &lt;a class="jive-link-external-small" href="http://blogs.msdn.com/powershell/archive/2009/10/27/windows-management-framework-is-here.aspx"&gt;PowerShell v2.0&lt;/a&gt; (included as part of the &lt;em&gt;Windows Management Framework&lt;/em&gt;), unless you modify PowerShell v1.0 to include it. There's almost no reason not to be using PowerShell 2.0, now that it has been officially released, however. &lt;img height="16px" src="http://communities.intel.com/images/emoticons/happy.gif" width="16px"/&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I recommend using the free &lt;a class="jive-link-external-small" href="http://www.powergui.org"&gt;Quest PowerGUI&lt;/a&gt; tool to develop and debug PowerShell scripts.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers,&lt;/p&gt;&lt;p&gt;Trevor Sullivan&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:86ca5a0e-8d58-418e-84f7-9149dd021627] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">amt</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">management</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sccm</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">configmgr</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">system</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">center</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">configuration</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">manager</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">2007</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">microsoft</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">powershell</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">automation</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">scripting</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">active</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <pubDate>Wed, 11 Nov 2009 21:03:38 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2009/11/11/finding-amt-objects-in-active-directory</guid>
      <dc:date>2009-11-11T21:03:38Z</dc:date>
      <clearspace:dateToText>2 weeks, 2 days ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/finding-amt-objects-in-active-directory</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=12825</wfw:commentRss>
    </item>
    <item>
      <title>Fast Call for Help Video Demo - Altiris Client Management Suite v7 and Intel vPro technology</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2009/04/02/fast-call-for-help-video-demo--altiris-client-management-suite-v7-and-intel-vpro-technology</link>
      <description>&lt;!-- [DocumentBodyStart:71e0d5da-a7e0-4e0e-8e82-ab32b099799f] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;At the recent Symantec ManageFusion 2009, Symantec announced the general availability of Symantec Altiris Client Management Suite Version 7.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;One of the new features in Symantec Altiris Client Management Suite Version 7 is support for Intel Centrino 2 with vPro technology's "Fast Call for Help."  The video below by Symantec's Senior Technical Manager Lee Bender is a demonstration of how an end-user would connect back to the Altiris Client Management Suite for remote diagnosis and repair of his notebook even though he connect boot into Windows and is outside of the corporate firewall.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/B_HGDFVpW20"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/B_HGDFVpW20" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;To learn more about Intel's presence at ManageFusion 2009, please go to &lt;a class="jive-link-external-small" href="http://www.intel.com/go/managefusion/"&gt;http://www.intel.com/go/managefusion/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:71e0d5da-a7e0-4e0e-8e82-ab32b099799f] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">bender</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">management</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">oob</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">outside</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">corporate</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">blue</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">fast</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">centrino</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">diagnosis</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">call</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">with</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">firewall</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">screen</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">firewall.</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">console</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">windows</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">and</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">for</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">remote</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">repair</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">symantec</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">lee</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">help</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">altiris</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">v7.</category>
      <pubDate>Fri, 03 Apr 2009 06:34:51 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2009/04/02/fast-call-for-help-video-demo--altiris-client-management-suite-v7-and-intel-vpro-technology</guid>
      <dc:date>2009-04-03T06:34:51Z</dc:date>
      <clearspace:dateToText>7 months, 4 weeks ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/fast-call-for-help-video-demo--altiris-client-management-suite-v7-and-intel-vpro-technology</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=12022</wfw:commentRss>
    </item>
    <item>
      <title>Highlights of Gregory Bryant (Intel VP) in the opening Symantec ManageFusion 2009 keynote</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2009/03/20/highlights-of-gregory-bryant-intel-vp-in-the-opening-symantec-managefusion-2009-keynote</link>
      <description>&lt;!-- [DocumentBodyStart:5c216ae8-dcd5-40c6-bc52-45a447d10216] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal; text-align: left;"&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: verdana,geneva;"&gt;On May 10th, Intel Vice-President Gregory Bryant was part of the opening ManageFusion keynote led by Symantec's Steve Morton.&lt;/span&gt;&lt;/p&gt;&lt;p style="min-  padding: 0px;"&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: verdana,geneva;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-size: 12pt;"&gt;&lt;span style="color: #000000; font-family: verdana,geneva;"&gt;Gregory talked about how customers are realizing value today with Intel vPro technology and getting a return on investment that pays for itself in less than one year.  He also talked about new Intel vPro technology product developments with Altiris Client Management Suite Version 7 and Symantec Workspace Streaming. View the highlights below or &lt;a class="jive-link-external-small" href="http://www.intel.com/go/managefusion/"&gt;click here to see the full keynote&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-size: 12pt; color: #000000; font-family: Verdana;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/QziZOohcZ4E"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/QziZOohcZ4E" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5c216ae8-dcd5-40c6-bc52-45a447d10216] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">management</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">2009</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">gregory</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">streaming</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">managefusion</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">refresh</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">bryant</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">roi</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">altiris</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">workplace</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">symantec</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">client</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">morton</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">steve</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">pc</category>
      <pubDate>Fri, 20 Mar 2009 16:57:30 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2009/03/20/highlights-of-gregory-bryant-intel-vp-in-the-opening-symantec-managefusion-2009-keynote</guid>
      <dc:date>2009-03-20T16:57:30Z</dc:date>
      <clearspace:dateToText>8 months, 1 week ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/highlights-of-gregory-bryant-intel-vp-in-the-opening-symantec-managefusion-2009-keynote</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11976</wfw:commentRss>
    </item>
    <item>
      <title>Videos showcasing how Intel® Anti-Theft Technology works</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2009/01/05/videos-showcasing-how-intel-anti-theft-technology-works</link>
      <description>&lt;!-- [DocumentBodyStart:a9191e2e-c42b-4986-929d-d0d68a197fb8] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;Last month, Intel introduced Intel® Anti-Theft Technology with support from Lenovo and Absolute Software.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;There are various use models that this new technology enables, such as:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="margin-left: 2em"&gt;&lt;ul&gt;&lt;li&gt;&lt;div style="margin: 0in 0in 0pt; text-indent: -0.25in; mso-list: l0 level1 lfo1;"&gt;&lt;span dir="ltr"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;The ability to disable a lost notebook PC and the data on the hard drive even if it never connects to the network (based on IT policy)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="margin: 0in 0in 0pt; text-indent: -0.25in; mso-list: l0 level1 lfo1;"&gt;&lt;span dir="ltr"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;The ability to send a "poison pill" so that the notebook PC is disabled, along with the data on the hard drive, if the notebook PC is connected to the internet&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div style="margin: 0in 0in 0pt; text-indent: -0.25in; mso-list: l0 level1 lfo1;"&gt;&lt;span dir="ltr"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span dir="ltr"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;The ability to re-activate the notebook PC if it is found again&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;p style="margin: 0in 0in 0pt; text-indent: -0.25in; mso-list: l0 level1 lfo1;"&gt;&lt;span style="font-family: Symbol; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Symbol; color: #333333; font-size: 10pt;"&gt;&lt;span style="mso-list: Ignore;"&gt;·&lt;span style="font-family: Times New Roman; font-size: 8pt;"&gt;&lt;span style="font-family: 'Times New Roman';"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style="font-family: Symbol; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Symbol; color: #333333; font-size: 10pt;"&gt;&lt;span style="mso-list: Ignore;"&gt;&lt;span style="font-family: Times New Roman; font-size: 8pt;"&gt;&lt;span style="font-family: 'Times New Roman';"&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;Watch the following Intel Anti-Theft Technology demo with Intel executives Dadi Perlmutter and Pat Gelsinger from Fall IDF 2008 and learn more about how this new technology helps with theft deterrance.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/2C-9xZ0Roa4"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/2C-9xZ0Roa4" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;For a more in-depth demonstration of Intel Anti-Theft Technology with Absolute Software, watch the following video:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/7d7tvJzAstc"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/7d7tvJzAstc" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;Listen to industry analysts discuss benefits of Intel Anti-Theft Technology and why this technology is an important milestone that will help with notebook PC theft deterrence in the future.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/xx70-aU3sZo"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/xx70-aU3sZo" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;Listen to a Lenovo executive discuss the benefits that Intel Anti-Theft Technology will bring to Lenovo based notebook PCs.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/5zEOBSmxz6E"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/5zEOBSmxz6E" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;Listen to Absolute executives discuss how they are taking advantage of Intel Anti-Theft Technology in their software and services.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/BPf8qvoSYKY"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/BPf8qvoSYKY" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;Last, listen to Intel's&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;Anand Pashupathy, George Thangadurai and Duncan Glendinning comment on the benefits of the new technology.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/7TzkmV1zJXE"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/7TzkmV1zJXE" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: left;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;Another Add, here's Josh Hilliker talking about Anti-Theft Technology @ the beach. &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: center;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span&gt;&lt;object height="350" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/dEuYHjvzLEM"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="350" src="http://www.youtube.com/v/dEuYHjvzLEM" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;span style="font-family: Arial; color: #333333; font-size: 10pt;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a9191e2e-c42b-4986-929d-d0d68a197fb8] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">software</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">poison</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">pill</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">centrino</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">idf</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">lenovo</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">protection</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">deterrence</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">services</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">it</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">fall</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">2008</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">pc</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">anti-theft</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">disabled</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">stolen</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">theft</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">executives</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">testimonial</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">absolute</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">unlock</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">2</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">policy</category>
      <pubDate>Tue, 06 Jan 2009 07:50:13 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2009/01/05/videos-showcasing-how-intel-anti-theft-technology-works</guid>
      <dc:date>2009-01-06T07:50:13Z</dc:date>
      <clearspace:dateToText>10 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/videos-showcasing-how-intel-anti-theft-technology-works</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11803</wfw:commentRss>
    </item>
    <item>
      <title>What Acronym best describes Intel® vPro Technology? (MMS 08)</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/05/19/what-acronym-best-describes-intel-vpro-technology-mms-08</link>
      <description>&lt;!-- [DocumentBodyStart:212e23e4-da3a-4683-9b51-598f88bf7af9] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Sometimes within Intel Marketing, we're told that our description of Intel Centrino with vPro technology or Intel Core 2 with vPro technology is a bit lengthy. Therefore, while at MMS 08, we asked Intel customers as well as technical experts from Intel and Microsoft to give us their best, most concise acronym that best describes Intel vPro Technology. Listen to their responses below. &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:cdddaa92-7ae0-4c27-bd05-9bc5c7c93ec2]--&gt;&lt;span&gt;&lt;center&gt;&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/2EaQujes0OU&amp;amp;hl=en"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="355" src="http://www.youtube.com/v/2EaQujes0OU&amp;amp;hl=en" type="application/x-shockwave-flash" width="425" wmode="transparent"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/center&gt;&lt;/span&gt;&lt;!--[CodeBlockEnd:cdddaa92-7ae0-4c27-bd05-9bc5c7c93ec2]--&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;pre __default_attr="html"&gt;&lt;![CDATA[&lt;line&gt;

&lt;/line&gt;]]&gt;&lt;/pre&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;To see more videos from MMS 08, go to &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.intel.com/go/mms/"&gt;http://www.intel.com/go/mms/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:212e23e4-da3a-4683-9b51-598f88bf7af9] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">microsoft</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">mms</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">08</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">justin_van_buren</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">acronym</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">system</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">center</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">configuration</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">manager</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sms</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">management</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">summit</category>
      <pubDate>Tue, 20 May 2008 00:10:44 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/05/19/what-acronym-best-describes-intel-vpro-technology-mms-08</guid>
      <dc:date>2008-05-20T00:10:44Z</dc:date>
      <clearspace:dateToText>1 year, 6 months ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/what-acronym-best-describes-intel-vpro-technology-mms-08</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11186</wfw:commentRss>
    </item>
    <item>
      <title>Future Directions on Intel vPro Technology with Symantec</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/04/22/future-directions-on-intel-vpro-technology-with-symantec</link>
      <description>&lt;!-- [DocumentBodyStart:ed3c564b-d030-49f2-8231-e770eddde773] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;While at ManageFusion, Symantec Director of Strategic Alliances Kevin Unbedacht discussed some of the future directions on Intel vPro technology that Symantec is taking advantage of. In the video below, learn how Symantec is taking advantage of the upcoming Intel Centrino 2 with vPro Technology. &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;pre __default_attr="html"&gt;&lt;![CDATA[&lt;line&gt;
&lt;/line&gt;]]&gt;&lt;/pre&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:3d5f246e-f769-449b-bd23-85d7773c24d9]--&gt;&lt;span&gt;&lt;center&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/9eE5j5FG3gw&amp;amp;hl=en&amp;amp;fs=1"/&gt;&lt;param name="allowFullScreen" value="true"/&gt;&lt;embed allowfullscreen="true" height="344" src="http://www.youtube.com/v/9eE5j5FG3gw&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/center&gt;&lt;/span&gt;&lt;!--[CodeBlockEnd:3d5f246e-f769-449b-bd23-85d7773c24d9]--&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ed3c564b-d030-49f2-8231-e770eddde773] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">altiris</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">centrino_2</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">anti-theft</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">symantec</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">future</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">directions</category>
      <pubDate>Wed, 23 Apr 2008 00:23:10 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/04/22/future-directions-on-intel-vpro-technology-with-symantec</guid>
      <dc:date>2008-04-23T00:23:10Z</dc:date>
      <clearspace:dateToText>1 year, 7 months ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/future-directions-on-intel-vpro-technology-with-symantec</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11092</wfw:commentRss>
    </item>
    <item>
      <title>New ROI Tool and Study for Intel Centrino with vPro technology</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/02/21/new-roi-tool-and-study-for-intel-centrino-with-vpro-technology</link>
      <description>&lt;!-- [DocumentBodyStart:8378b3aa-72a6-4e91-a90e-96eb4243f9ee] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;With the launch of Intel Centrino with vPro technology - several medium to large customers (with 1000 or more PCs in the infrastructure) have asked for Intel's help with building the financial business case for the new technology. Given this need, Intel asked WiPro to survey senior IT managers from 41 companies about current notebook PC management costs that could potentially be reduced by taking advantage of the new technology. WiPro specifically focused on PC maintenance costs that IT usually budgets for on an annual basis (these are "hard dollar costs", such as help desk calls, help desk visits (especially for hardware and software malfunctions - such as OS blue screens and hard drive failures), auditing, security incidents, software patch deployment costs, major application (such as Office) deployment costs into the infrastructure, etc.). &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;WiPro's findings are as follows:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li level="1" type="ul"&gt;&lt;p&gt;Estimated hard dollar savings of up to ~$140 / PC / year with Intel Centrino with vPro technology vs. the mobile PC in the installed PC base today&lt;/p&gt;&lt;/li&gt;&lt;li level="1" type="ul"&gt;&lt;p&gt;Reduces the need for hardware-related desk-side visits by as much as &lt;u&gt;58%&lt;/u&gt; and for software-related desk-side visits by as much as &lt;u&gt;57%&lt;/u&gt;&lt;/p&gt;&lt;/li&gt;&lt;li level="1" type="ul"&gt;&lt;p&gt;Up to &lt;u&gt;51%&lt;/u&gt; faster patch saturation per incident and reduces number of inventory failures by &lt;u&gt;62%&lt;/u&gt;&lt;/p&gt;&lt;/li&gt;&lt;li level="1" type="ul"&gt;&lt;p&gt;Enterprises can take advantage of most of the Intel Centrino with vPro technology features (including remote diagnosis and repair) in the mobile PC form factor for about 16 hours a day (the other 8 hours, on average, the mobile PC is asleep or off-line, and an IT manager cannot use the Intel vPro technology features)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For those interested in the report, please read about it here: &lt;a class="jive-link-external-small" href="http://www.intel.com/business/business-pc/roi/centrinoprowhitepaper.pdf"&gt;http://www.intel.com/business/business-pc/roi/centrinoprowhitepaper.pdf&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In order to help customers model the "hard dollar" savings in your environment, Intel has created the Intel Centrino with vPro technology and Intel Core2 with vPro technology ROI Estimator that is based on the data from the above study, as well as another study that focused on desktops with Intel Core2 with vPro technology that was published last year. This ROI Estimator is located here: &lt;a class="jive-link-external-small" href="http://www.intel.com/business/business-pc/roi/demo.htm"&gt;http://www.intel.com/business/business-pc/roi/demo.htm&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span&gt;To learn more about the ROI Estimator and the desktop and mobile PC studies, please listen to Josh, me and WiPro talk about them in this PodTech videocast: &lt;/span&gt;&lt;a class="jive-link-external-small" href="http://www.podtech.net/home/4679/roi-intel-vpro-technology-in-the-enterprise"&gt;http://www.podtech.net/home/4679/roi-intel-vpro-technology-in-the-enterprise&lt;/a&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Cheers -&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Justin Van Buren&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Intel Business Marketing Manager&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8378b3aa-72a6-4e91-a90e-96eb4243f9ee] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vpro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">it</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">efficiency</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">pc</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">refresh</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">program</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">hardware</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">complexity</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">wipro</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">desktop</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">management</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">justin</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">van</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">buren</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">centrino</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">propatrick</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">kalaher</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">timothy</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">morey</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">josh</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">hilliker</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">roi</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">estimator</category>
      <pubDate>Thu, 21 Feb 2008 19:37:01 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/02/21/new-roi-tool-and-study-for-intel-centrino-with-vpro-technology</guid>
      <dc:date>2008-02-21T19:37:01Z</dc:date>
      <clearspace:dateToText>1 year, 11 months ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/new-roi-tool-and-study-for-intel-centrino-with-vpro-technology</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=10810</wfw:commentRss>
    </item>
    <item>
      <title>Is Apple's iPhone better than a robot weed wacker?</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2007/11/16/is-apples-iphone-better-than-a-robot-weed-wacker</link>
      <description>&lt;!-- [DocumentBodyStart:8ef8dab0-c228-4507-9e5c-445eddf3c739] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;If you're like me then you love gadgets, gizmos, do-hickeys and cool new inventions. If so, then check out Time Magazines latest list of "[&lt;a class="jive-link-external-small" href="http://www.time.com/time/specials/2007/article/0,28804,1677329_1678130_1678116,00.html"&gt;The Best Inventions of the Year&lt;/a&gt;]". Everything from Flexible, ultra-thin LED screens  that can actually bend and twist to the latest in robot gardening to a little known product called the &lt;a class="jive-link-external-small" href="http://www.time.com/time/specials/2007/article/0,28804,1677329_1678542_1677891,00.html"&gt;iPhone&lt;/a&gt;*. And in the Computer category, Intel's engineers have been recognized for their hard work in leveraging a new alloy, Hafnium, which cuts down on electricity leakage in the new &lt;a class="jive-link-external-small" href="http://www.time.com/time/specials/2007/article/0,28804,1677329_1678130_1678116,00.html"&gt;Intel(r) 45-nanometer Core processor&lt;/a&gt; . Congratulations!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a class="jive-link-external-small" href="http://www.time.com/time/specials/2007/article/0,28804,1677329_1678130_1678116,00.html"&gt;Check it out&lt;/a&gt; &amp;gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:8ef8dab0-c228-4507-9e5c-445eddf3c739] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">gadgets</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">inventions</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">hafnium</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">technology</category>
      <pubDate>Fri, 16 Nov 2007 14:51:00 GMT</pubDate>
      <author>todd.sussman@mrmworldwide.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2007/11/16/is-apples-iphone-better-than-a-robot-weed-wacker</guid>
      <dc:date>2007-11-16T14:51:00Z</dc:date>
      <clearspace:dateToText>2 years, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/is-apples-iphone-better-than-a-robot-weed-wacker</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=10757</wfw:commentRss>
    </item>
  </channel>
</rss>

