<?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:3ee4e747-ede7-4653-b605-9a4b082ca33a] --&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:3ee4e747-ede7-4653-b605-9a4b082ca33a] --&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, 3 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>OOB Console Error</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2009/06/22/oob-console-error</link>
      <description>&lt;!-- [DocumentBodyStart:c202370d-7f91-45e1-a6d9-ada8a29ec8d6] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello vPro Experts!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Are you having trouble getting the Microsoft Out-of-Band (OOB) Console to connect to your Intel vPro clients? If so, one of the first things you should do, is enable verbose logging in your &lt;span style="color: #0000ff;"&gt;OOBConsole.exe.config&lt;/span&gt; file. This file is located in the following folder: &lt;span style="color: #0000ff;"&gt;%PROGRAMFILES%\Microsoft Configuration Manager Console\AdminUI\bin&lt;/span&gt;. If you open this file in Notepad, you should see a line that looks like &lt;span style="color: #0000ff;"&gt;&amp;lt;source name="OOBConsole" switchValue="Error"&amp;gt;&lt;/span&gt;. If you change the text &lt;span style="color: #000000;"&gt;&lt;span style="color: #0000ff;"&gt;Error&lt;/span&gt; &lt;/span&gt;to&lt;span style="color: #000000;"&gt; &lt;span style="color: #0000ff;"&gt;Verbose&lt;/span&gt;&lt;/span&gt;, you will enable verbose logging for the OOB Console. The next time you try to connect to an AMT device, you should start seeing more detailed logging in the OOBconsole.log file, located in:&lt;span style="color: #000000;"&gt; &lt;span style="color: #0000ff;"&gt;%PROGRAMFILES%\Microsoft Configuration Manager Console\AdminUI\AdminUILog&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;If you're seeing this message specifically: &lt;span style="color: #0000ff;"&gt;GetAMTPowerState fail with result:0x800401F3&lt;/span&gt;, then you might have forgotten to install &lt;a class="jive-link-external-small" href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=845289ca-16cc-4c73-8934-dd46b5ed1d33&amp;amp;displaylang=en"&gt;WinRM 1.1&lt;/a&gt; on your Windows XP client running the OOB console. Also make sure that you're running Windows XP Service Pack 3! Once you install WinRM 1.1, this error should magically disappear, and have you well on your way to managing vPro devices!&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;&lt;strong&gt;Trevor Sullivan&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Systems Engineer&lt;/em&gt;&lt;/p&gt;&lt;p&gt;OfficeMax Corporation&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c202370d-7f91-45e1-a6d9-ada8a29ec8d6] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">oobconsole</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">issue</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">problem</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">error</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">message</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">configmgr</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">amt</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">isv</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">console</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sccm</category>
      <pubDate>Mon, 22 Jun 2009 20:50:08 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2009/06/22/oob-console-error</guid>
      <dc:date>2009-06-22T20:50:08Z</dc:date>
      <clearspace:dateToText>5 months, 1 week ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/oob-console-error</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=12286</wfw:commentRss>
    </item>
    <item>
      <title>Microsoft OOB Console Requirement</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2009/06/08/microsoft-oob-console-requirement</link>
      <description>&lt;!-- [DocumentBodyStart:f7f820e7-06eb-41b7-aabc-bc645786c228] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello vPro Experts!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I would like to pass on some information that I discovered a while ago, based on a Microsoft Premiere Support ticket. I was having trouble getting the Microsoft Out-of-Band (OOB) Management Console functioning from a Windows XP system. I tried everything on a fresh, standard build of Windows XP, but nothing would work.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;After working with Premiere Support, we finally discovered that Windows XP Service Pack 3 (SP3) was required for proper functioning of the Microsoft OOB console.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This behavior is actually related to some functionality that was &lt;span style="text-decoration: underline;"&gt;added&lt;/span&gt; in SP3, specifically in the &lt;em&gt;winhttp.dll&lt;/em&gt; library. There is a function called &lt;a class="jive-link-external-small" href="http://msdn.microsoft.com/en-us/library/aa384114(VS.85).aspx"&gt;WinHttpSetOption&lt;/a&gt; in the WinHttp library, which is called with a parameter enabling the &lt;a class="jive-link-external-small" href="http://msdn.microsoft.com/en-us/library/aa384066(VS.85).aspx"&gt;WinHttp Option Flag&lt;/a&gt; named &lt;em&gt;WINHTTP_ENABLE_SPN_SERVER_PORT&lt;/em&gt;. This flag enables the WinHttp library to include the server port in the Kerberos Service Principle Name (SPN), since the AMT web service is running on a non-standard HTTP port (16993).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The Windows XP Service Pack 2 (SP2) version of the WinHttp library does not include this capability, and consequently fails to authenticate. In order to properly connect to ConfigMgr-provisioned AMT devices with the Microsoft OOB Console, please make sure your helpdesk / support systems are running Windows XP SP3.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If you have any questions, feel free to post them in the comments section, and I will do my best to answer them. &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;&lt;strong&gt;Trevor Sullivan&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Systems Engineer&lt;/em&gt;&lt;/p&gt;&lt;p&gt;OfficeMax Corporation&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f7f820e7-06eb-41b7-aabc-bc645786c228] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">oob</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">center</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">issue</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">failure</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">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">microsoft</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">isv</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">tools</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">sccm_sp1</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">kerberos</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">trevor</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sullivan</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">problem</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">troubleshoot</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">authentication</category>
      <pubDate>Mon, 08 Jun 2009 17:24:06 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2009/06/08/microsoft-oob-console-requirement</guid>
      <dc:date>2009-06-08T17:24:06Z</dc:date>
      <clearspace:dateToText>5 months, 3 weeks ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/microsoft-oob-console-requirement</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=12247</wfw:commentRss>
    </item>
    <item>
      <title>Fully Automated Enterprise Client Builds :: Toying with ideas ...</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/12/16/fully-automated-enterprise-client-builds-toying-with-ideas</link>
      <description>&lt;!-- [DocumentBodyStart:c8aca38b-492b-4b36-b6c3-776fecb10f38] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;     &lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;Hello vPro Experts!&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;I've got something sitting in the back of my mind, that I would like to share with you all. Unfortunately, it's simply a theory, and I have not yet had the opportunity to test it, but I am in the early stages of developing and documenting it, and would really appreciate any feedback, to help make it become a reality.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;----&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;span style="text-decoration: underline;"&gt;The Problem&lt;/span&gt;&lt;/span&gt;&lt;/h1&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: verdana,geneva;"&gt;Are you asking yourself either of these questions?&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;"&lt;em&gt;How can I reduce the amount of overhead involved with imaging every new client system that comes through the doors, but at the same time, not shift that cost to the vendor?&lt;/em&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;or, slightly paraphrased:&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;"&lt;em&gt;How can I streamline the provisioning of new systems, but at the same time, not sacrifice the flexibility of having in-house imaging?&lt;/em&gt;"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;If your support teams are imaging each desktop and laptop that is shipped from your hardware vendor, you may have investigated the option of having the vendor pre-image systems prior to shipping them out. There are a couple of caveats to this methodology though. First of all, there is usually an additional cost associated with any sort of customization that the vendor must make to a system. Secondly, if you are using a task sequence-based "imaging" process in-house, then you may not have a way of transferring that process (which is inherently network-reliant), to the vendor. Typically, in this scenario, your operating systems, applications, and Active Directory domain, are all residing on network servers that can't be contacted by the vendor during the process (&lt;em&gt;unless you have some uber-fast, secure VPN link between you and them, in which case you can stop reading&lt;/em&gt;).&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;----&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;span style="text-decoration: underline;"&gt;The Theoretical Solution (utilizing Intel vPro)&lt;/span&gt;&lt;/span&gt;&lt;/h1&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;The proposed solution to the problem presented above, is actually a combination of technologies, and custom development work. In this case, I'm going to be working with the following tools:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;a class="jive-link-external-small" href="http://technet.microsoft.com/en-us/configmgr/default.aspx"&gt;Microsoft Configuration Manager&lt;/a&gt; SP1 / R2 (R2 for unknown computer OSD support)&lt;br/&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva;"&gt;Intel vPro / AMT Clients 3.2.1 and greater (4.0, 5.0)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva;"&gt;Microsoft &lt;a class="jive-link-external-small" href="http://msdn.microsoft.com/en-us/library/t0aew7h6.aspx"&gt;VBscript &lt;/a&gt;and/or &lt;a class="jive-link-external-small" href="http://www.microsoft.com/windowsserver2003/technologies/management/powershell/default.mspx"&gt;Windows Powershell&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;a class="jive-link-external-small" href="http://msdn.microsoft.com/en-us/library/aa394582.aspx"&gt;Microsoft Windows Management Instrumentation&lt;/a&gt; (WMI)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;a class="jive-link-external-small" href="http://www.intel.com/software/amt-dtk/"&gt;Intel AMT Developer Toolkit&lt;/a&gt; (DTK)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2&gt;&lt;span style="font-family: verdana,geneva; color: #4f81bd;"&gt;Requirements&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;Here are the requirements for the process:&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;!----&gt;&lt;!----&gt;&lt;!----&gt;&lt;!----&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;Microsoft Configuration Manager SP1&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;An Out-of-Band (OOB) service point for ConfigMgr SP1&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;“&lt;em&gt;ProvisionServer&lt;/em&gt;” DNS record pointing to out-of-band service point&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;em&gt;Collection 1&lt;/em&gt;: SCCM collection to temporarily store resource records created by script&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;em&gt;Collection 2&lt;/em&gt;: SCCM collection that contains provisioned vPro clients &lt;em&gt;without&lt;/em&gt; the ConfigMgr client agent&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;ConfigMgr Task Sequence to build vPro system&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;ConfigMgr advertisement to link task sequence to &lt;em&gt;Collection 2&lt;/em&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p class="MsoListParagraphCxSpLast" style="text-indent: -0.25in;"&gt;&lt;!----&gt;&lt;!----&gt;&lt;/p&gt;&lt;h2&gt;&lt;span style="font-family: verdana,geneva; color: #4f81bd;"&gt;Step-by-Step Workflow&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;This is the theoretical process that would be followed:&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;!----&gt;&lt;!----&gt;&lt;!----&gt;&lt;!----&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Physically plug in vPro system – power and network (&lt;em&gt;device remains powered off&lt;/em&gt;)&lt;br/&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt; &lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;vPro System obtains IP address and DHCP Option 15 (&lt;em&gt;mydomain.com&lt;/em&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;vPro System sends “&lt;em&gt;hello packet&lt;/em&gt;” to site server (CNAME &lt;em&gt;provisionserver.mydomain.com&lt;/em&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Script reads vPro system’s UUID from &lt;em&gt;amtopmgr.log&lt;/em&gt; file on site server&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Script creates Resource Record for system in “&lt;em&gt;Collection 1&lt;/em&gt;” with auto-provisioning enabled&lt;/span&gt;&lt;/li&gt;&lt;ol&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Use a random name for the hostname (based off of the SMBIOS UUID perhaps)&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;Make sure to refresh the collection membership, or verify that it gets added somehow&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;v&lt;/span&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Pro System sends another hello packet to site server at built-in interval&lt;/span&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;vPro System is recognized as a SCCM resource and provisions&lt;/span&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Provisioned vPro resource is automatically populated into SCCM “&lt;em&gt;Collection 2&lt;/em&gt;”&lt;/span&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Task sequence begins executing&lt;/span&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Once the operating system is installed, the device should detect a mismatching hostname between the OS and the ME firmware (this could be configured as part of the task sequence)&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;span&gt;&lt;span&gt;&lt;span style="font-family: &amp;amp;quot;Times New Roman&amp;amp;quot;; font-style: normal; font-variant: normal; font-weight: normal; font-size: 7pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;The device will send a request to the ConfigMgr site server to re-provision the AMT firmware with the new hostname (equivalent of "&lt;em&gt;Update Provisioning Data&lt;/em&gt;"?)&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva; font-size: 10pt;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoListParagraphCxSpLast" style="text-indent: -0.25in;"&gt;&lt;!----&gt;&lt;!----&gt;&lt;/p&gt;&lt;p&gt;&lt;!----&gt;&lt;!----&gt;&lt;!----&gt;&lt;!----&gt;&lt;/p&gt;&lt;h2&gt;&lt;span style="font-family: verdana,geneva; color: #4f81bd;"&gt;&lt;a class="jive-link-anchor-small" name="_Toc217093702"&gt;Known Issues and Risks&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;There is at least one known outstanding issue that I'm aware of, and there may be a way to solve it.&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3&gt;&lt;span style="font-family: verdana,geneva; color: #4f81bd;"&gt;Possibility of over-writing an existing system&lt;/span&gt;&lt;/h3&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;span style="font-size: 10pt;"&gt;If an existing, un-provisioned system is not reporting into Configuration Manager properly, it may be incorrectly assumed to be a new, blank system. Therefore, during the build (or imaging) process, an automated check may need to be put into place to verify whether or not the system is truly a new client or not. This could theoretically be done by analyzing the filesystem, or mounting the offline registry hives, and looking for any indicators. Additionally, if a vPro device was already provisioned, it would need to be excluded from being targeted with this process.&lt;/span&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;----&lt;/span&gt;&lt;/p&gt;&lt;h2&gt;&lt;span style="font-family: verdana,geneva; color: #4f81bd;"&gt;Conclusion&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;I hope that this overview gives you some ideas about how to automate the provisioning of new enterprise clients using Intel vPro out-of-band provisioning. If you have any suggestions for improvement, I'd be interested in hearing them. If you'd like, you can download a copy of this document below.&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;Thanks,&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva; color: #999999;"&gt;&lt;strong&gt;Trevor Sullivan&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva; color: #999999;"&gt;&lt;em&gt;Systems Engineer&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: verdana,geneva; color: #999999;"&gt;OfficeMax Corporation&lt;/span&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&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 class="MsoListParagraphCxSpLast" style="text-indent: -0.25in;"&gt;&lt;span style="font-family: verdana,geneva;"&gt;&lt;br/&gt;&lt;/span&gt;&lt;!----&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:c8aca38b-492b-4b36-b6c3-776fecb10f38] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sccm</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">engineering</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">5.0</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sccm_sp1</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">tools</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">deploy</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">vista</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">amt</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">trevor</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">provision</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">3.2.1</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">install</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">4.0</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">dtk</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">xp</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sullivan</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">automated</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">microsoft</category>
      <pubDate>Tue, 16 Dec 2008 15:25:09 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/12/16/fully-automated-enterprise-client-builds-toying-with-ideas</guid>
      <dc:date>2008-12-16T15:25:09Z</dc:date>
      <clearspace:dateToText>11 months, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/fully-automated-enterprise-client-builds-toying-with-ideas</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11766</wfw:commentRss>
    </item>
    <item>
      <title>Updated AMT Troubleshooting Document</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/12/09/updated-amt-troubleshooting-document</link>
      <description>&lt;!-- [DocumentBodyStart:6c3a75ce-9e28-4ac5-8cac-32c5cdab92a0] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello, vPro Experts!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've uploaded an updated document with additional troubleshooting measures related to Intel vPro and Microsoft Configuration Manager. Please download and provide feedback on it.&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-wiki-small" href="http://communities.intel.com/docs/DOC-2362"&gt;Troubleshooting Intel AMT and ConfigMgr&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;Thanks!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Trevor Sullivan&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Systems Engineer&lt;/em&gt;&lt;/p&gt;&lt;p&gt;OfficeMax Corporation&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6c3a75ce-9e28-4ac5-8cac-32c5cdab92a0] --&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">amt</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">troubleshooting</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">document</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">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">sccm</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">trevor</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sullivan</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">problem</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">issue</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">fix</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">resolve</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">resolution</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">provisioning</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">authentication</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">error</category>
      <pubDate>Tue, 09 Dec 2008 14:23:02 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/12/09/updated-amt-troubleshooting-document</guid>
      <dc:date>2008-12-09T14:23:02Z</dc:date>
      <clearspace:dateToText>11 months, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/updated-amt-troubleshooting-document</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11750</wfw:commentRss>
    </item>
    <item>
      <title>Setting Power Policies in Windows Powershell</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/12/08/setting-power-policies-in-windows-powershell</link>
      <description>&lt;!-- [DocumentBodyStart:81866851-ef06-41ca-b1e0-d63685e387a2] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello Intel vPro Community!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm going to talk to you today a little bit about how to use Windows Powershell to set Intel vPro power profiles. I'll provide a quick bit of background first on what power profiles are, and &lt;strong&gt;why&lt;/strong&gt; you'd want to be able to set them with Powershell.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Intel vPro power profiles are nothing more than a setting in the Management Engine that tells the AMT chip when to be powered up, and when not to be powered up. In some cases, you may want vPro to be inactive during sleep states, or after the computer has lost power (eg. UPS failure).&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In my case however, I want vPro to be always active. This is problematic, because Microsoft Configuration Manager's implementation of a provisioning server doesn't give you the option of setting the active power profile. Instead, during provisioning, ConfigMgr sets the active profile to whatever index "5" is. You'll actually see this in the &lt;em&gt;amtopmgr.log&lt;/em&gt; file on your OOB (Out-Of-Band) service point during the provisioning process.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Because ConfigMgr decides the default power profile during provisioning, I've decided that I wanted to change it. Because Windows Powershell is an &lt;em&gt;awesome&lt;/em&gt; automation tool, and because Intel's AMT Developer Toolkit (DTK) offers a .NET library that I can use in Powershell, I figured that I would figure out how to do it!&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;--------------------&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;You might remember my last post on how to use Powershell to connect to an AMT device. The process basically involves loading the aforementioned .NET DLL from the DTK, and then establishing a connection to the device. I didn't really get the opportunity to show you how to do a whole lot with it after making the connection though, so that's the purpose of this post! Let's go ahead and take a look at a few lines of Powershell code, so you can understand the retrieval, and setting of power profiles.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;-------------------------------------------------&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;# In my last Powershell script, I used the $amtdevice variable&lt;/p&gt;&lt;p&gt;# to reference the &lt;em&gt;AmtSystem&lt;/em&gt; .NET object. We'll assume at this point&lt;/p&gt;&lt;p&gt;# that you have already connected to the AMT device based&lt;/p&gt;&lt;p&gt;# on my last article.&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;$amtdevice&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;# By using the .NET Reflector tool, we can see that the &lt;em&gt;AmtSystem&lt;/em&gt;&lt;/p&gt;&lt;p&gt;# object has a property called &lt;em&gt;SecurityAdmin&lt;/em&gt;, which returns an &lt;em&gt;AmtSecurityAdmin&lt;/em&gt;&lt;/p&gt;&lt;p&gt;# object.&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;$AmtSecAdmin = $AmtDevice.SecurityAdmin&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;# The &lt;em&gt;AmtSecurityAdmin&lt;/em&gt; object has a method called &lt;em&gt;GetPowerPackages&lt;/em&gt;().&lt;/p&gt;&lt;p&gt;# After examining this data type in .NET Reflector, we can filter for only the two&lt;/p&gt;&lt;p&gt;# properties we want to see, the profile &lt;em&gt;ID&lt;/em&gt;, and its &lt;em&gt;Name&lt;/em&gt;. We'll use the Powershell&lt;/p&gt;&lt;p&gt;# &lt;em&gt;Select-Object&lt;/em&gt; cmdlet to filter this data.&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;$AmtSecAdmin.GetPowerPackages() | Select-Object -Property ID,Name&lt;/span&gt;&lt;/p&gt;&lt;p&gt;# You should get some output looking something like this:&lt;/p&gt;&lt;p&gt;# 12834f94-10fb-dc4f-968e-1e232b0c9065         Desktop: ON in S0&lt;br/&gt;# ab0086a1-7f9a-424c-a6e6-bb243a295d9e         Desktop: ON in S0, S3&lt;br/&gt;# acab8672-b496-e248-9b9e-9b7df91c7fd4         Desktop: ON in S0, S3, S4-5&lt;br/&gt;# 4dcd327b-be6b-8943-a62a-4d7bd8dbd026         Desktop: ON in S0, ME Wake in S3&lt;br/&gt;# 46732273-dc23-2f43-a98a-13d37982d855         Desktop: ON in S0, ME Wake in S3, S4-5&lt;br/&gt;# baa419c5-6f6e-4d8d-b227-517f7e4595db         Desktop: ON in S0, S3, S4-5, OFF After Power Loss&lt;br/&gt;# ede30bd6-c504-462c-b772-d18018ee2fc4         Desktop: ON in S0, ME Wake in S3, S4-5, Off After Power Loss&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;# Once we have a listing of the power profiles available on the AMT device&lt;/p&gt;&lt;p&gt;# we can get the one that we want, and then set it. Since I always want my&lt;/p&gt;&lt;p&gt;# AMT device active, no matter the system's power state, I'm going to choose&lt;/p&gt;&lt;p&gt;# "&lt;em&gt;Desktop: ON in S0, S3, S4-5&lt;/em&gt;" which is index 2 (in a zero-based collection).&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;$TargetPowerProfile = ($AmtSecAdmin.GetPowerPackages())[2]&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;# Now that I have a variable referencing the target power profile, I will set the&lt;/p&gt;&lt;p&gt;# profile on the AMT device. The AmtSecurityAdmin object has a method called&lt;/p&gt;&lt;p&gt;# &lt;em&gt;SetActivePowerPackage&lt;/em&gt;() that takes one parameter: the power profile we have&lt;/p&gt;&lt;p&gt;# a reference to.&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;$AmtResult = $AmtSecAdmin.SetActivePowerPackage($TargetPowerProfile)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;"Setting power profile to $($TargetPowerProfile.Name) resulted in $AmtResult!"&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;##### End Setting Power Profile #####&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;# Let's also take a quick look at how to get some basic information about&lt;/p&gt;&lt;p&gt;# the AMT device's provisioning data. We can figure out if IDE-R, SoL, and the&lt;/p&gt;&lt;p&gt;# WebUI are enabled. We'll use the &lt;em&gt;AmtGeneralInfo&lt;/em&gt; object for this.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;# Get a reference to the &lt;em&gt;AmtGeneralInfo&lt;/em&gt; object&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;$AmtInfo = $amtdevice.Info&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;# Write out the current configuration settings&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;"SOL Enabled: $AmtInfo.SerialOverLanEnabled"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;"IDE-R Enabled: $AmtInfo.IdeRedirectEnabled"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #008080;"&gt;"WebUI Enabled: $AmtInfo.WebUiEnabled"&lt;/span&gt;&lt;/p&gt;&lt;p&gt;-------------------------------------------------&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I hope this helps get you on your way to doing some cool Powershell / vPro automation! Let me know whether or not this helps you in your endeavors &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;&lt;strong&gt;Trevor Sullivan&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Systems Engineer&lt;/em&gt;&lt;/p&gt;&lt;p&gt;OfficeMax Corporation&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:81866851-ef06-41ca-b1e0-d63685e387a2] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">configmgr</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">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">saver</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">standardize</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">trevor</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">sullivan</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">powershell</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">deploy</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">administrate</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">automate</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">sccm_sp1</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">administer</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">manage</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">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">time</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">tools</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">dtk</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">intel</category>
      <pubDate>Tue, 09 Dec 2008 02:03:20 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/12/08/setting-power-policies-in-windows-powershell</guid>
      <dc:date>2008-12-09T02:03:20Z</dc:date>
      <clearspace:dateToText>11 months, 3 weeks ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/setting-power-policies-in-windows-powershell</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11748</wfw:commentRss>
    </item>
    <item>
      <title>Intel AMT Provisioning Issues with ConfigMgr SP1</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/11/18/intel-amt-provisioning-issues-with-configmgr-sp1</link>
      <description>&lt;!-- [DocumentBodyStart:ff39f594-0d48-4ba0-9fd9-2a517260c11d] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Hello,&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is my first contribution to the Intel vPro Expert center, and although I would not consider myself an expert on this product, I've still been graciously allowed to post here. Thanks Josh!  &lt;img src="http://communities.intel.com/openport/images/emoticons/grin.gif"/&gt;  &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd like to start out by introducing myself. My name is Trevor Sullivan, and I am a desktop systems engineer at a large retail corporation. Over the past 8 months or so, I've been working quite a bit with several people from Intel and Microsoft to better understand the Intel vPro technology, and how it can benefit my company. Overall, I'm really impressed with the technology, and I am fortunate enough to be working with an environment that has a pretty decent install base of Intel vPro-enabled systems.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'd like to take a few minutes to explain a few issues that we recently experienced with our production vPro implementation.&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;-&lt;/p&gt;&lt;hr originalText="----"/&gt;&lt;h3&gt;&lt;u&gt;Provisioning Certificate Chain Invalid&lt;/u&gt;&lt;/h3&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We're using Intel vPro with Microsoft Configuration Manager 2007 SP1, and for a while, we had been running into issues that prevented us from provisioning a vPro device. It turns out that the reasoning behind this was related to our provisioning certificate. We requested a certificate from Verisign, and imported it into our central SCCM site server. We have several child primaries to our central SCCM primary site server, however, and we were using the same provisioning certificate on those systems (Intel confirmed that this was possible).&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;/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;When I exported the certificate (using the &lt;em&gt;Certificates&lt;/em&gt; MMC snap-in), with its private key, from my central SCCM site server, I did not choose the option to &lt;u&gt;export the certificate chain&lt;/u&gt; with it. Importing the certificate, with its private key, went just fine on the other SCCM primaries, but provisioning just didn't work. After working with Bill York from Intel for several hours, it was finally determined that the Verisign Class 3 Intermediate Certificate Authority's public key certificate was expired in the Intermediate certificate store on the SCCM site server running the out-of-band (OOB) service point. I imported the updated Verisign Intermediate certificate into the server's Intermediate CA certificate store, which resolved the issue I was having.&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;/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;If you are experiencing this specific problem, you should see something like the following in your &lt;em&gt;amtopmgr.log&lt;/em&gt; on the SCCM site server running the OOB service point:&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;/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;em&gt;Try to use provisioning account to connect target machine vprosystem.subdomain.mydomain.com...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Server unexpectedly disconnected when TLS handshaking.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;**** Error 0x382b948 returned by ApplyControlToken&lt;/em&gt;&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 style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Although this probably should have been obvious to me, I did not actually open the provisioning certificate on the server I had imported the certificate on, to verify that the certificate was valid. If I had done so, I would have seen a message stating that the certificate was invalid, and then I could have looked at the certificate chain tab to see that the Verisign Intermediate CA's certificate was not valid. After examining the certificate for the Intermediate CA, it was determined that it had expired, causing my provisoning certificate to become invalid.&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;/p&gt;&lt;hr originalText="----"/&gt;&lt;h3&gt;&lt;u&gt;Microsoft PKI -Auto-Approval of Pending Certificate Requests&lt;/u&gt;&lt;/h3&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;After resolving the certificate issue, we started seeing another issue. This issue was related to our internal Microsoft PKI. The next symptom we saw was again in the &lt;em&gt;amtopmgr.log&lt;/em&gt; file (+in case you haven't figured it out, this is probably the most useful AMT log in SCCM). Here are the messages we saw:&lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Send request to AMT proxy component to generate client certificate. (MachineId = 60752)&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Successfully created instruction file for AMT proxy task: D:\SMS\inboxes\amtproxymgr.box&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;RETRY(1) - Validate client certificate for AMT device vprosystem.subdomain.mydomain.com being generated.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Wait 20 seconds to find client certificate for AMT device vprosystem.subdomain.mydomain.com being generated again...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wakes up to process instruction files&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wait 20 seconds...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;RETRY(2) - Validate client certificate for AMT device vprosystem.subdomain.mydomain.com being generated.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Wait 20 seconds to find client certificate for AMT device vprosystem.subdomain.mydomain.com being generated again...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wakes up to process instruction files&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wait 20 seconds...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;RETRY(3) - Validate client certificate for AMT device vprosystem.subdomain.mydomain.com being generated.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Wait 20 seconds to find client certificate for AMT device vprosystem.subdomain.mydomain.com being generated again...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wakes up to process instruction files&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wait 20 seconds...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;RETRY(4) - Validate client certificate for AMT device vprosystem.subdomain.mydomain.com being generated.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Wait 20 seconds to find client certificate for AMT device vprosystem.subdomain.mydomain.com being generated again...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wakes up to process instruction files&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;AMT Provision Worker: Wait 20 seconds...&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;RETRY(5) - Validate client certificate for AMT device vprosystem.subdomain.mydomain.com being generated.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Error: Missed device certificate. To provision device with TLS server or Mutual authentication mode, device certficate is required. (MachineId = 60752)&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Error: Can't finish provision on AMT device vprosystem.subdomain.mydomain.com with configuration code (0)!&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;&amp;amp;gt;Provision task end&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&amp;amp;lt;&lt;/em&gt;&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 style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;What this is telling you, is that the OOB service point was unsuccessful with its attempt to generate and retrieve a web server certificate, for the vPro client, from your internal Microsoft CA (&lt;em&gt;either root or subordinate, but in our case, a subordinate&lt;/em&gt;). Although we had duplicated and configured the web server certificate template on our CA, the certificate was not getting created as we expected. The issue, in this case, was that our CA was not configured to automatically approve pending certificate requests. &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 style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;In order to resolve this issue, follow these steps:&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 style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1. Open the Certification Authority MMC snap-in and connect to your CA&lt;/p&gt;&lt;p&gt;2. Right-click the CA node, and select &lt;em&gt;Properties&lt;/em&gt;&lt;/p&gt;&lt;p&gt;3. Select the "&lt;em&gt;Policy Module&lt;/em&gt;" tab&lt;/p&gt;&lt;p&gt;4.  Click the &lt;em&gt;Properties&lt;/em&gt; button&lt;/p&gt;&lt;p&gt;5. Choose the lower radio button (It reads: "&lt;em&gt;Follow the settings in the certificate template, if applicable. Otherwise, automatically issue the certificate.&lt;/em&gt;")&lt;/p&gt;&lt;p&gt;6. Click OK on all dialog boxes&lt;/p&gt;&lt;p&gt;7. Restart the CA service, to allow the setting to take effect&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;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;-&lt;/p&gt;&lt;hr originalText="----"/&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have a  few more issues I'd like to talk about, mostly related to DNS. I will post again with details.&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 style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for reading,&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 style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Trevor Sullivan&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Systems Engineer&lt;/em&gt;&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;/div&gt;&lt;!-- [DocumentBodyEnd:ff39f594-0d48-4ba0-9fd9-2a517260c11d] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">trevor</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sullivan</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">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">configmgr</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">sms</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">sp1</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sccm_sp1</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">amt</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">provision</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">out-of-band</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">generate</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">certificate</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">ca</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">pki</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">webserver</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">template</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">web_server</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">error</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">failure</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">fail</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">applycontroltoken</category>
      <pubDate>Tue, 18 Nov 2008 13:27:29 GMT</pubDate>
      <author>pcgeek86@gmail.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/11/18/intel-amt-provisioning-issues-with-configmgr-sp1</guid>
      <dc:date>2008-11-18T13:27:29Z</dc:date>
      <clearspace:dateToText>1 year, 1 week ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/intel-amt-provisioning-issues-with-configmgr-sp1</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11710</wfw:commentRss>
    </item>
    <item>
      <title>Superhero powers with Intel® vPro™ Technology?</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/06/21/superhero-powers-with-intel-vpro-technology</link>
      <description>&lt;!-- [DocumentBodyStart:1e8ce1e6-1d80-4c5c-bab3-824df93b3e47] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;Given the new exciting capabilities in Intel vPro technology around hardware assisted manageability and security, our IT customers have mentioned that this new technology makes them feel much more powerful - like a superhero! See the video below to see what superhero Intel vPro technology made them feel like.&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;!--[CodeBlockStart:18320e70-c81d-42f7-8c41-3fbab5dd5fe0]--&gt;&lt;span&gt;&lt;center&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/thMebXdZIOg&amp;amp;hl=en"/&gt;&lt;embed height="344" src="http://www.youtube.com/v/thMebXdZIOg&amp;amp;hl=en" type="application/x-shockwave-flash" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/center&gt;&lt;/span&gt;&lt;!--[CodeBlockEnd:18320e70-c81d-42f7-8c41-3fbab5dd5fe0]--&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 2008, 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:1e8ce1e6-1d80-4c5c-bab3-824df93b3e47] --&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">mms</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">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">superhero</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">powers</category>
      <pubDate>Sat, 21 Jun 2008 18:25:53 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/06/21/superhero-powers-with-intel-vpro-technology</guid>
      <dc:date>2008-06-21T18:25:53Z</dc:date>
      <clearspace:dateToText>1 year, 5 months ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/superhero-powers-with-intel-vpro-technology</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11302</wfw:commentRss>
    </item>
    <item>
      <title>IT administrators compete at MMS 2008 in the Intel vPro technology Challenge</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/05/28/it-administrators-compete-at-mms-2008-in-the-intel-vpro-technology-challenge</link>
      <description>&lt;!-- [DocumentBodyStart:b4c0f4a7-e75d-43df-aa4e-e6a20940f25f] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;We had the Intel vPro technology Challenge at MMS 2008 - a competition where teams of two competed to fix a troubled PC using Microsoft System Center Configuration Manager 2007 with PCs with Intel vPro technology. Check out how much fun this Challenge was at MMS 2008 this year:&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;!--[CodeBlockStart:183b483f-1246-4d13-8ce8-973e34debe56]--&gt;&lt;span&gt;&lt;center&gt;&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ae9269D4DvQ&amp;amp;hl=en"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="355" src="http://www.youtube.com/v/ae9269D4DvQ&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:183b483f-1246-4d13-8ce8-973e34debe56]--&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 2008, 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:b4c0f4a7-e75d-43df-aa4e-e6a20940f25f] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">centrino_pro</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">challenge</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">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">mms</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">sccm_sp1</category>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">sms</category>
      <pubDate>Wed, 28 May 2008 22:54:21 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/05/28/it-administrators-compete-at-mms-2008-in-the-intel-vpro-technology-challenge</guid>
      <dc:date>2008-05-28T22:54:21Z</dc:date>
      <clearspace:dateToText>1 year, 6 months ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/it-administrators-compete-at-mms-2008-in-the-intel-vpro-technology-challenge</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11228</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:0ee2b477-ed08-4edf-aeed-a412f272b46e] --&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:f0041be5-c163-4188-a7f2-c8653551f3dd]--&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:f0041be5-c163-4188-a7f2-c8653551f3dd]--&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:0ee2b477-ed08-4edf-aeed-a412f272b46e] --&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>What does the "v" in Intel vPro technology mean to you?</title>
      <link>http://communities.intel.com/community/openportit/vproexpert/blog/2008/05/19/what-does-the-v-in-intel-vpro-technology-mean-to-you</link>
      <description>&lt;!-- [DocumentBodyStart:fa5ebf80-3584-4d8b-bec6-aa4e23765464] --&gt;&lt;div class='jive-rendered-content'&gt;&lt;p&gt;When Intel released Intel vPro technology into the marketplace in 2006, the press asked us what the "v" in Intel vPro technology meant. Now that the technology has been in the marketplace for almost two years, we thought that the best answer to the question, "What does the "v" in Intel vPro technology mean to you?" would come from Intel customers, as well as from some of the technical experts from Intel and our partners who deal with our customers on an almost daily basis. See their answers below. &lt;/p&gt;&lt;p style="min-height: 8pt; height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;!--[CodeBlockStart:ca8ff1f6-3a4c-4bb2-8034-ff4ea06e2878]--&gt;&lt;span&gt;&lt;center&gt;&lt;object height="355" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/eDHYHEAhPd4&amp;amp;hl=en"/&gt;&lt;param name="wmode" value="transparent"/&gt;&lt;embed height="355" src="http://www.youtube.com/v/eDHYHEAhPd4&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:ca8ff1f6-3a4c-4bb2-8034-ff4ea06e2878]--&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 2008, go here: &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:fa5ebf80-3584-4d8b-bec6-aa4e23765464] --&gt;</description>
      <category domain="http://communities.intel.com/community/openportit/vproexpert/blog/tags">mms</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">sccm_sp1</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">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">mms</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">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">justin_van_buren</category>
      <pubDate>Mon, 19 May 2008 22:28:37 GMT</pubDate>
      <author>justin.van.buren@intel.com</author>
      <guid>http://communities.intel.com/community/openportit/vproexpert/blog/2008/05/19/what-does-the-v-in-intel-vpro-technology-mean-to-you</guid>
      <dc:date>2008-05-19T22:28:37Z</dc:date>
      <clearspace:dateToText>1 year, 6 months ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/community/openportit/vproexpert/blog/comment/what-does-the-v-in-intel-vpro-technology-mean-to-you</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/community/openportit/vproexpert/blog/feeds/comments?blogPost=11183</wfw:commentRss>
    </item>
  </channel>
</rss>

