<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: &amp;quot;Unauthorized&amp;quot; Error using Powershell to connect to AMT provisioned PCs in Intel vPro® Platform</title>
    <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468977#M5784</link>
    <description>&lt;P&gt;Hi mwiseley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me help you with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am going to pass your thread over to the vPro Specialist community for them to help you with the configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin M&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jul 2014 13:54:05 GMT</pubDate>
    <dc:creator>Kevin_M_Intel</dc:creator>
    <dc:date>2014-07-25T13:54:05Z</dc:date>
    <item>
      <title>"Unauthorized" Error using Powershell to connect to AMT provisioned PCs</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468976#M5783</link>
      <description>&lt;P&gt;I am trying to create a Powershell script that will allow me to turn on multiple PCs simultaneously using Intel AMT/Vpro. I think I am close to get a script that will work, but when I run it I am getting this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;I'm assuming that this has something to do with my AMT credentials being incorrect. I've been trying to follow the instructions attached (Intel vPro Technology module for windows PowerShell...) but I'm still stuck. I am able to connect to these PCs using the vpro platform solution manager and the manageability commander tool with no issues. If anyone has experience with this type of thing I would greatly appreciate any help. Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2014 19:54:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468976#M5783</guid>
      <dc:creator>MWise1</dc:creator>
      <dc:date>2014-07-24T19:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: "Unauthorized" Error using Powershell to connect to AMT provisioned PCs</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468977#M5784</link>
      <description>&lt;P&gt;Hi mwiseley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me help you with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am going to pass your thread over to the vPro Specialist community for them to help you with the configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kevin M&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2014 13:54:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468977#M5784</guid>
      <dc:creator>Kevin_M_Intel</dc:creator>
      <dc:date>2014-07-25T13:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: "Unauthorized" Error using Powershell to connect to AMT provisioned PCs</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468978#M5785</link>
      <description>&lt;P&gt;Hello mwiseley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX&lt;/P&gt;&lt;P&gt;    Invoke-AMTPowerManagement [-ComputerName]  [-Port ] [-Operation]  [-TLS] [-CertificateName ] [-Username ] [-Password ] &lt;/P&gt;&lt;P&gt;    [[-Credential] ] []&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You only provide the computername from the file but username and password or a PSCredential are missing&lt;/P&gt;&lt;P&gt;this line worked for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Invoke-AMTPowerManagement -ComputerName xxxxxxxx -Username xxxxxx -Password xxxxxxx -Operation poweroff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2014 10:13:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468978#M5785</guid>
      <dc:creator>Jvand3</dc:creator>
      <dc:date>2014-08-06T10:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: "Unauthorized" Error using Powershell to connect to AMT provisioned PCs</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468979#M5786</link>
      <description>&lt;P&gt;Hi Jan, thanks for your response. The issue I have is that I will need to eventually be able to run a script that will turn on several hundred computers simultaneously. Typing in each PC name one-by-one would take much too long. We need to be able to have a text file with a list of FQDNs that I can then pipe to a command to remotely turn on all those PCs. This is an example I found that is in the format I would like to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;Get-Content computers.txt | Invoke-AMTPowerManagement -Port:16993 -Operation:PowerOn  Will pull the list of amt clients from a text file and pipe them in the Invoke-AMTPowerManagement Cmdlet  ComputerName Port Operation Status ------------ ---- --------- ------ &lt;A href="http://computer1.vprodemo.com"&gt;computer1.vprodemo.com&lt;/A&gt; 16993 PowerOn Successful &lt;A href="http://computer2.vprodemo.com"&gt;computer2.vprodemo.com&lt;/A&gt; 16993 PowerOn Successful &lt;A href="http://computer3.vprodemo.com"&gt;computer3.vprodemo.com&lt;/A&gt; 16993 PowerOn Successful&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if we need to use the -port part (I never set up TLS). I have an AMT password that I have set up on all the PCs that I've provisioned so far. I've tried using the "write-amtcredential" command and entered the AMT password. I'm not sure if it was set or not though. &lt;/P&gt;</description>
      <pubDate>Thu, 07 Aug 2014 20:21:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468979#M5786</guid>
      <dc:creator>MWise1</dc:creator>
      <dc:date>2014-08-07T20:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: "Unauthorized" Error using Powershell to connect to AMT provisioned PCs</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468980#M5787</link>
      <description>&lt;P&gt;Hello mwiseley,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would keep it first simple, I use -TLS and it knows what port to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get-Content &lt;A&gt;d:\comps.txt&lt;/A&gt; | Invoke-AMTPowerManagement -TLS -Username XXXX -Password XXXXX -Operation:PowerOn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This line works for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you get this working you can go a step deeper with commands like write-AMTcredential, read-AMTcredential but first keep it as basic as possible, like this you see quicker where the problem in a script is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2014 20:14:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468980#M5787</guid>
      <dc:creator>Jvand3</dc:creator>
      <dc:date>2014-08-08T20:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: "Unauthorized" Error using Powershell to connect to AMT provisioned PCs</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468981#M5788</link>
      <description>&lt;P&gt;Hello mwiseley,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe this would be a script for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR /F %%i IN (PathTocomputers.txt) do START RemoteControl.exe -hostname %%i -user XXXXX -pass mailto:VPRO@Hanze01 XXXXXX -PowerUp -tls -ignoreCert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All you have to change  are the "XXX's" fill in username and password&lt;/P&gt;&lt;P&gt;and change "PathTocomputers" to your path and file with computername's (one on a line)&lt;/P&gt;&lt;P&gt;Save the line as a cmd or run it on command line but run it in the same directory where you have RemoteControl.exe.&lt;/P&gt;&lt;P&gt;You can download this tool at the link below (Intel)&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-ignoreCert Isn't really necessary,only if you have problems with certificates &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way works faster than a PowerShell script for me; it starts them all at once but be careful I never tried more than 300 at once &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2014 09:32:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/quot-Unauthorized-quot-Error-using-Powershell-to-connect-to-AMT/m-p/468981#M5788</guid>
      <dc:creator>Jvand3</dc:creator>
      <dc:date>2014-08-12T09:32:54Z</dc:date>
    </item>
  </channel>
</rss>

