<?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: Upgrade Intel EMA from 1.6 to 1.11 in Intel vPro® Platform</title>
    <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1531271#M10749</link>
    <description>&lt;P&gt;Hello, George71,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for sharing the installer log.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The installer log is showing the Recovery Cert as installed and saved in the certificate store.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp;2023-09-29 10:22:51.2533|INFO||7552|1|DisplayEvent - MeshServerInstaller.MainForm, EMAServerInstaller, Version=1.11.1.0, Culture=neutral, PublicKeyToken=57d11e903ea1ca2c - EVENT: Information, Start creating Recovery server TLS certificate and saving to database.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;2023-09-29 10:22:56.3663|INFO||7552|1|DisplayEvent - MeshServerInstaller.MainForm, EMAServerInstaller, Version=1.11.1.0, Culture=neutral, PublicKeyToken=57d11e903ea1ca2c - EVENT: Information, Finish creating Recovery server TLS certificate and saving to database.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;2023-09-29 10:22:56.4893|INFO||7552|1|DisplayEvent - MeshServerInstaller.MainForm, EMAServerInstaller, Version=1.11.1.0, Culture=neutral, PublicKeyToken=57d11e903ea1ca2c - EVENT: Information, This target recovery cert is saved in cert store. The thumbprint:75FCCCDF261AE3934FFF59243765C139F1670E0E&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;2023-09-29 10:22:56.7758|INFO||7552|1|DisplayEvent - MeshServerInstaller.MainForm, EMAServerInstaller, Version=1.11.1.0, Culture=neutral, PublicKeyToken=57d11e903ea1ca2c - EVENT: Information, Recovery cert is bound to the target recovery port:8085&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have found issues with EMA instances after doing upgrades from older EMA versions (i.e. 1.6 or older) to newer versions like 1.11.1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After the upgrade, the table dbo.EndpointHistory in the EMA SQL DB disappears.&amp;nbsp; We are suggesting to manually add the table and copy the following SQL script into the table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note:&amp;nbsp;It is always necessary to back up their EMA SQL DB outlined in the EMA installation in section 1.4.1 prior to doing any manual configuration changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;USE [EMADatabase]&lt;/P&gt;
&lt;P&gt;GO&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/****** Object:&amp;nbsp; Table [dbo].[EndpointHistory]&amp;nbsp;&amp;nbsp;&amp;nbsp; Script Date: 10/4/2023 10:23:37 AM ******/&lt;/P&gt;
&lt;P&gt;SET ANSI_NULLS ON&lt;/P&gt;
&lt;P&gt;GO&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SET QUOTED_IDENTIFIER ON&lt;/P&gt;
&lt;P&gt;GO&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CREATE TABLE [dbo].[EndpointHistory](&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Time] [datetime] NOT NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [EndpointId] [nvarchar](128) NOT NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Message] [nvarchar](1000) NOT NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Source] [int] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Entity] [uniqueidentifier] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Action] [int] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Argument] [int] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ArgumentId] [binary](32) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ArgExtra] [nvarchar](500) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [TenantId] [uniqueidentifier] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [EndpointHistoryId] [bigint] IDENTITY(1,1) NOT NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Uri] [nvarchar](256) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ResourceType] [nvarchar](64) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ResourceName] [nvarchar](128) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [CallerId] [uniqueidentifier] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [CallerName] [nvarchar](128) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [CallerIpAddress] [nvarchar](64) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [CallerUserAgent] [nvarchar](128) NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ExecutionTime] [datetime] NULL,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ExecutionDuration] [int] NULL&lt;/P&gt;
&lt;P&gt;) ON [PRIMARY]&lt;/P&gt;
&lt;P&gt;GO&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I look forward to your outcome.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Miguel C.&lt;/P&gt;
&lt;P&gt;Intel Customer Support Technician&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 06 Oct 2023 19:10:46 GMT</pubDate>
    <dc:creator>MIGUEL_C_Intel</dc:creator>
    <dc:date>2023-10-06T19:10:46Z</dc:date>
    <item>
      <title>Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1515367#M10502</link>
      <description>&lt;P class=""&gt;&lt;SPAN class=""&gt;Hello,&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;we are trying to upgrade our Intel EMA from 1.6.0.0 to 1.11.0.0.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;The installation ends with an error: "This target recovery cert cannot be saved in cert store. The thumbprint:78...." .&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;How can I solve the problem?&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;BTW, where can be downloaded Intel EMA 1.10 or 1.9?&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 09:20:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1515367#M10502</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-08-18T09:20:36Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1515655#M10504</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I want to better understand the current Intel® EMA instance configuration.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Tell me about the OS running the EMA server and OS running the SQL database.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Include if both are running on the same server machine or virtual machine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;How many endpoints are provisioned now?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Is the EMA instance running in Client Control Mode (CCM) or Admin Control Mode (ACM)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;If it is ACM; do you mind accessing IIS, open the Cert from the Personal Store, and send a picture of what you see in the Certification Path tab?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;In addition, select the root Cert (first line), and click view details icon.&amp;nbsp; In the next window select the Details tab.&amp;nbsp;Please let me know if it is SHA1 or SHA256.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Next, is it possible to access the EMA instance using the Global admin and Tenant account?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;If yes, please confirm if you can see the endpoints.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Please confirm if you keep a backup of the EMA configuration before doing the update.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Aug 2023 23:10:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1515655#M10504</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-08-18T23:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1515949#M10507</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;both are running on the same server (ESX virtual) with Windows Server 2016 and SQL Server 2019.&lt;/P&gt;&lt;P&gt;The number of endpoints is 8193.&lt;/P&gt;&lt;P&gt;ACM.&lt;/P&gt;&lt;P&gt;Digicert Global Root G2 -&amp;gt; Digicert Global CA G2 -&amp;gt; ..server = all in SHA256.&lt;/P&gt;&lt;P&gt;Yes, I can see the endpoints.&lt;/P&gt;&lt;P&gt;Yes, I made a backup snapshot in vmware before the upgrade,&amp;nbsp; which I restored after the above error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;George71&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2023 06:24:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1515949#M10507</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-08-21T06:24:08Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1516116#M10509</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Thank you for your update. &amp;nbsp;It has introduced security updates and the current Certificate might not match the requirements. &amp;nbsp;The Certificate chain must be SHA256 (Root, Intermediate, and Leaf are SHA256).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Please follow the instructions of section 2.2 - Performing an Update Installation using the Setup Wizard.&amp;nbsp; It is necessary to turn off some EMA services and IIS before doing the update.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&lt;A href="https://www.intel.com/content/dam/support/us/en/documents/software/manageability-products/intel-ema-distibuted-seve-installation-and-maintenance-guide.pdf#page=39" target="_blank"&gt;https://www.intel.com/content/dam/support/us/en/documents/software/manageability-products/intel-ema-distibuted-seve-installation-and-maintenance-guide.pdf#page=39&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;It is possible to validate the Certificate chain by accessing IIS; open the Certificate from the Personal Store &amp;gt; select the Root Cert from the Certification Path tab &amp;gt; click the details icon &amp;gt; from the new window select the Details tab &amp;gt; Review if it says SHA1 or SHA256.&amp;nbsp;Do the same for the Intermediate Certificate.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I look forward to hearing from you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Aug 2023 16:00:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1516116#M10509</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-08-21T16:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1516418#M10510</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wrote: "&lt;SPAN&gt;Digicert Global Root G2 -&amp;gt; Digicert Global CA G2 -&amp;gt; ..server = all in SHA256.&lt;/SPAN&gt;" This means that&amp;nbsp;t&lt;SPAN&gt;he Certificate chain is SHA256 (Root, Intermediate, and Leaf are SHA256).&amp;nbsp; That wasn't the problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;The problem was not stopping the services in the Platform Manager before running the upgrade.&lt;/STRONG&gt; I expected Wizard to do it for me. Thanks. The upgrade now went through without any errors.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But installing new AMT stations works strangely. The EMA Agent log writes: "Failed creating random password wide string for WinCrypto.". And Intel EMA in Intel AMT setup status shows "Pending Configuration", but everything works.&amp;nbsp; &lt;/SPAN&gt;In the intel EMA above the device in the "Hardware Manageability" tab, the system status and other things are correctly shown. Why does it show "Pending configuration" when everything is working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still haven't received an answer on how to download the older version 1.7-1.10 ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;George71&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 11:21:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1516418#M10510</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-08-22T11:21:36Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1516515#M10511</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I am glad to hear the Intel® EMA software update was possible.&amp;nbsp; Intel removed the previous versions due to security and performance improvements.&amp;nbsp; The engineering team confirmed there are no update limitations from version 1.3.2 and higher to the latest 1.11.0.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;George71, to better understand the issue do you mind sending via private message the installer log ([System drive]\EMALog-Intel EMAInstaller.txt) and the EMA logs from Server ([System drive]\Program File(x86)\Intel\Platform Manager\EmaLogs).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Please send me the files without the date called:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Webserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Swarmserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Ajaxserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Recoveryserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Manageabilityserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;In addition, please gather and send me the following log from an endpoint with the Pending configuration status.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Download and run Intel® EMA Configuration Tool (ECT)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&lt;A href="https://www.intel.com/content/www/us/en/download/19805/30485/intel-endpoint-management-assistant-configuration-tool-intel-ema-configuration-tool.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/download/19805/30485/intel-endpoint-management-assistant-configuration-tool-intel-ema-configuration-tool.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Installation:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Download and unzip the tool.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Double-click the .msi file and follow the prompts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Run:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;a- Open a command prompt (alternatively, you can run the tool from Windows PowerShell*) as administrator.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;b- Navigate to the installation folder (default C:\Program Files (x86)\Intel\EMAConfigTool).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;c- Run the command: EMAConfigTool.exe –verbose&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I look forward to your reply.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 22 Aug 2023 16:17:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1516515#M10511</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-08-22T16:17:09Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1517867#M10528</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;By any chance, have you been able to collect the EMA server logs, the EMA installer log, and the EMA configuration log from any of the pending activation endpoints?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I look forward to hearing from you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Aug 2023 22:44:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1517867#M10528</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-08-25T22:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1518236#M10530</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I restored the snapshot again. I can upgrade for the third time and immediately reactivate one station. Can you please describe specifically what all the logs (file names) are and where they are located. So that we don't forget something. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;George71&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Aug 2023 08:23:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1518236#M10530</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-08-28T08:23:36Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1518387#M10531</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I am glad to hear the rollback was possible with the snapshot.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;The EMA server logs' location is in the instructions below.&amp;nbsp; Before doing the EMA update; I would like to confirm if the issue with the new endpoints started before doing the update or after.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Did you try to provision the endpoints after doing the EMA update? &amp;nbsp;If yes, please unprovision the new endpoints; the EMA configuration tool will help you.&amp;nbsp; If I am not mistaken you enable the Random endpoint password.&amp;nbsp;It is necessary to access the EMA console&amp;gt; Endpoint tab&amp;gt; click over the endpoint and select Stop Managing, the new pop-up window will display the Endpoint Password.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Select Stop Managing&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Then, run the EMA configuration tool (ECT) in the endpoint and unprovision the machine.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel® EMA Configuration Tool (ECT) software&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&lt;A href="https://www.intel.com/content/www/us/en/download/19805/30485/intel-endpoint-management-assistant-configuration-tool-intel-ema-configuration-tool.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/download/19805/30485/intel-endpoint-management-assistant-configuration-tool-intel-ema-configuration-tool.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Installation:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Download and unzip the tool.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Double-click the .msi file and follow the prompts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Run:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;a- Open a command prompt (alternatively, you can run the tool from Windows PowerShell*) as administrator.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;b- Navigate to the installation folder (default C:\Program Files (x86)\Intel\EMAConfigTool).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;c- Run the command: EMAConfigTool.exe --unconfigure --password &amp;lt;Random password&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Then, run the command EMAConfigTool.exe –verbose.&amp;nbsp; The log will confirm if the system is unconfigured.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Now, we can gather the EMA server logs from the path below: ([System drive]\Program File(x86)\Intel\Platform Manager\EmaLogs).  There are 5 files, and their names are:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Webserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Swarmserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Ajaxserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Recoveryserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;EMAlog-Manageabilityserver.txt&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Finally, we can gather a log after doing the EMA installation or update.  The path of the file is below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;([System drive]\EMALog-Intel EMAInstaller.txt)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Please share the logs via private message (for security reasons).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Aug 2023 17:34:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1518387#M10531</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-08-28T17:34:14Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1519441#M10555</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;By any chance, have you been able to gather the information requested?&amp;nbsp; I look forward to hearing from you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Aug 2023 18:46:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1519441#M10555</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-08-31T18:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1519680#M10562</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;I send you private message with EMALogs.zip (08-23-2023).&lt;BR /&gt;The ZIP contained these files:&lt;BR /&gt;(the EMA server logs)&lt;BR /&gt;EMAlog-Webserver.txt&lt;BR /&gt;EMAlog-Swarmserver.txt&lt;BR /&gt;EMAlog-Ajaxserver.txt&lt;BR /&gt;EMAlog-Recoveryserver.txt&lt;BR /&gt;EMAlog-Manageabilityserver.txt&lt;BR /&gt;Were they helpful?&lt;/P&gt;&lt;P&gt;(the EMA configuration log)&lt;BR /&gt;*_System_Summary.json/xml .. is that it? Or where should I look for "configuration log"?&lt;/P&gt;&lt;P&gt;(the EMA installer log)&lt;BR /&gt;[System drive]\EMALog-Intel EMAInstaller.txt does not exist. Is it created on every install/upgrade?&lt;/P&gt;&lt;P&gt;Yes, I confirm that everything works fine before the update. Both now endpoints and old ones, for which I call unconfig AMT through the BIOS. These are common testing procedures that we have been using for over 5 years.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;George71&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2023 12:06:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1519680#M10562</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-09-01T12:06:35Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1519874#M10566</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I am still reviewing the logs with the engineering department.&amp;nbsp; Intel has implemented some security features and only TLS 1.1 and TLS1.2 are supported.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;I am asking for a picture from the Details tab of the root certificate in order to validate if it is SHA256.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;In addition, please validate if the MeshSettings certificate after doing the update is the same. Otherwise, replace it with the old one.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;MeshSettingsCertificate is stored in the Local Machine\Personal certificate store on your server machine.&amp;nbsp; This certificate is used to encrypt/decrypt the server settings stored in the database.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Look forward to your response; if there is no response to this email, I will send you a follow-up on 9/6/2023.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 02 Sep 2023 00:06:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1519874#M10566</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-09-02T00:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520264#M10569</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="George71_0-1693828562247.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/45284i1EA76AB1DD19CE06/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="George71_0-1693828562247.png" alt="George71_0-1693828562247.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 11:56:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520264#M10569</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-09-04T11:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520288#M10570</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;after the update, the MeshSettings certificate is the same.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;George71&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 13:30:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520288#M10570</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-09-04T13:30:17Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520360#M10576</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel published a new EMA version 1.11.1; do you mind updating EMA to this version?&amp;nbsp;Please review the sections:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;2.3 Performing an update Installation using the setup wizard and&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;9.1 Updating using the Setup Wizard&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel(R)_EMA_Server_Installation_and_Maintenance_Guide included in the Intel® EMA zip file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel® Endpoint Management Assistant (Intel® EMA) v1.11.1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&lt;A href="https://www.intel.com/content/www/us/en/download/19449/intel-endpoint-management-assistant-intel-ema.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/download/19449/intel-endpoint-management-assistant-intel-ema.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Sep 2023 16:27:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520360#M10576</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-09-04T16:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520598#M10579</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried version 1.11.1 and the problem is the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George71&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 08:49:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520598#M10579</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-09-05T08:49:36Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520833#M10583</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Thank you for providing me with the results of the latest EMA version 1.11.1.&amp;nbsp; Please allow me time to review again the logs and picture provided.  I will give you an update soon.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 05 Sep 2023 19:57:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1520833#M10583</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-09-05T19:57:20Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1521668#M10591</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;We are still working on the EMA server logs.&amp;nbsp; Our findings in the meantime are the following.&amp;nbsp; Intel® EMA software v1.11.1 made a change on the supported Server operating systems.&amp;nbsp; Only Windows Server 2019 and 2022 are supported.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;For reference: Intel® Endpoint Management Assistant (Intel® EMA) Release Notes &lt;A href="https://downloadmirror.intel.com/646990/Intel_EMA_Release_Notes.pdf#page=9" target="_blank"&gt;https://downloadmirror.intel.com/646990/Intel_EMA_Release_Notes.pdf#page=9&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;There is a workaround that we can run to figure out if a crypto is blocking the connection.  This failure might be caused by an older crypto cipher that is less secure and deprecated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Allow older TLS protocols that work with Intel® AMT 14 and older versions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Download or copy Internet Information Services IIS Crypto from Nartac* Software onto the Intel® EMA server.&amp;nbsp;It can be found here &lt;A href="https://www.nartac.com/Products/IISCrypto/" target="_blank"&gt;https://www.nartac.com/Products/IISCrypto/&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Allow the server to use older Server and client TLS Protocols and test.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Disable the unnecessary options and ensure the EMA server complies with your company security policies.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;For reference: Intel® Active Management Technology (Intel® AMT) Version 14 and Later Not Working on Windows Server* 2022?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;&lt;A href="https://www.intel.com/content/www/us/en/support/articles/000093800/software/manageability-products.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/support/articles/000093800/software/manageability-products.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Look forward to your response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Sep 2023 20:15:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1521668#M10591</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-09-07T20:15:10Z</dc:date>
    </item>
    <item>
      <title>Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1523024#M10610</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Hello, George71,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;By any chance, have you been able to work on our previous troubleshooting?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Miguel C.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14.625px;"&gt;Intel Customer Support Technician&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Sep 2023 17:33:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1523024#M10610</guid>
      <dc:creator>MIGUEL_C_Intel</dc:creator>
      <dc:date>2023-09-12T17:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Upgrade Intel EMA from 1.6 to 1.11</title>
      <link>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1523239#M10614</link>
      <description>&lt;P&gt;Hello, Miguel,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I have to work on something? You wrote: "We are still working on the EMA server logs.".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;George71&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 05:56:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-vPro-Platform/Upgrade-Intel-EMA-from-1-6-to-1-11/m-p/1523239#M10614</guid>
      <dc:creator>George71</dc:creator>
      <dc:date>2023-09-13T05:56:05Z</dc:date>
    </item>
  </channel>
</rss>

