{"id":37957,"date":"2020-10-09T14:11:32","date_gmt":"2020-10-09T21:11:32","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=37957"},"modified":"2022-12-22T20:06:39","modified_gmt":"2022-12-23T03:06:39","slug":"removing-azure-application-id-certificate","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/","title":{"rendered":"Removing an Azure Application ID Certificate When There are Multiple"},"content":{"rendered":"\n<p>I wanted to get this quick-read out there, as I recently ran into this issue and didn&#8217;t see any articles about a remedy for it.<\/p>\n\n\n\n<p>Here&#8217;s some background: I&#8217;ve set up an NPS server in Azure for a client so they can leverage the NPS MFA extension that you can integrate into your Azure AD MFA component. We got the NPS with no issue, but as soon as we installed the NPS extension and created the cert, our test connection would instantly fail.<\/p>\n\n\n\n<p>All I saw in the NPS was the &#8220;extension was being bypassed.&#8221; It was frustrating, to say the least. However, while troubleshooting, I noticed I had multiple certificates, but no way to remove. (Note the following commands are run to get the certificate properties):<\/p>\n\n\n\n<p><strong>import-module MSOnline<\/strong><\/p>\n\n\n\n<p><strong>Connect-MsolService<\/strong><\/p>\n\n\n\n<p><strong>Get-MsolServicePrincipalCredential -AppPrincipalId &#8220;981f26a1-7f43-403b-a875-f8b09b8cd720&#8221; -ReturnKeyValues 1<\/strong> )&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-Azure-NPS-extension-Cert-PowerShell-Output.png\" alt=\"Removing an Azure Application ID Certificate-Azure NPS extension Cert PowerShell Output\" class=\"wp-image-37959\" width=\"599\" height=\"470\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-Azure-NPS-extension-Cert-PowerShell-Output.png 599w, https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-Azure-NPS-extension-Cert-PowerShell-Output-480x377.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 599px, 100vw\" \/><figcaption class=\"wp-element-caption\"><em>Fig 1.1<\/em> Azure NPS extension Cert PowerShell Output<\/figcaption><\/figure>\n\n\n\n<p>I also saw this error in event viewer logs under Applications and Services: Logs&gt;Microsoft&gt;AzureMfa&gt;AuthZ:<\/p>\n\n\n\n<p>NPS Extension for Azure MFA:&nbsp; CID: 34e0abbd-a7aa-43b5-983b-f34022101f42 :Exception in Authentication Ext for User sample@domain.com :: ErrorCode:: CID :34e0abbd-a7aa-43b5-983b-f34022101f42 ESTS_TOKEN_ERROR Msg:: Verify the client certificate is properly enrolled in Azure against your tenant and the server can access URL in Registry STS_URL. Error authenticating to eSTS: ErrorCode:: ESTS_TOKEN_ERROR Msg:: Error in retreiving token details from request handle: -895352823 AADSTS700023: Client assertion audience claim does not match Realm issuer. Review the documentation at https:\/\/docs.microsoft.com\/azure\/active-directory\/develop\/active-directory-certificate-credentials .<br>Trace ID: 95fee205-acd2-4802-897c-a258f7847000<br>Correlation ID: e3dfe056-fbdd-4b4b-8852-2d55991e97be<br>Timestamp: 2020-09-22 15:55:52Z Enter ERROR_CODE @ https:\/\/go.microsoft.com\/fwlink\/?linkid=846827 for detailed troubleshooting steps. Enter ERROR_CODE @ https:\/\/go.microsoft.com\/fwlink\/?linkid=846827 for detailed troubleshooting steps.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"75\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-Live-Event-Log-1024x75.png\" alt=\"Removing an Azure Application ID Certificate-Live Event Log\" class=\"wp-image-37961\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-Live-Event-Log-980x72.png 980w, https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-Live-Event-Log-480x35.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw\" \/><figcaption class=\"wp-element-caption\"><em>Fig 1.2 <\/em>Live Event Log<\/figcaption><\/figure>\n\n\n\n<p>I spoke with the Microsoft MFA team, who was awesome by the way, and he reviewed the certificate with me and came to the same conclusion: we needed to remove the certificates and only have one. Which leads me to the following PowerShell script that needs to be run once you are signed in to your Azure tenant:<\/p>\n\n\n\n<p>Remove-MsolServicePrincipalCredential -AppPrincipalId &#8220;981f26a1-7f43-403b-a875-f8b09b8cd720&#8221; -KeyIds <strong><em>98622eb8-eca4-4a3a-8458-b6cc9d766033<\/em><\/strong><\/p>\n\n\n\n<p><strong>AppPrincipalId <\/strong>is the App ID for the MFA Auth, so that will be the same for you. However, <strong>KeyIds <\/strong>will be different and is located in the Azure AD certificate properties mentioned in Fig 1.1 in today&#8217;s article.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"290\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-KeyID-needed-for-removing-cert-from-Azure-AD-1024x290.png\" alt=\"Removing an Azure Application ID Certificate-KeyID needed for removing cert from Azure AD\" class=\"wp-image-37960\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-KeyID-needed-for-removing-cert-from-Azure-AD-980x278.png 980w, https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-KeyID-needed-for-removing-cert-from-Azure-AD-480x136.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) and (max-width: 980px) 980px, (min-width: 981px) 1024px, 100vw\" \/><figcaption class=\"wp-element-caption\"><em>Fig 1.3<\/em> KeyID needed for removing cert from Azure AD<\/figcaption><\/figure>\n\n\n\n<p>The rep said we could just remove all but the most current time-stamped certificate property; however, I just started from scratch. I removed all certificates (including the Azure AD tenant certificate created on the NPS server) and uninstalled the NPS extension. Once my reboot was completed, I installed the extension and created the new certificate. Once we confirmed certificate properties in Azure AD matched, we had our network engineer test. Without hesitation, the NPS responded, MFA prompt initiated, and there were smiles all around!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I wanted to get this quick-read out there, as I recently ran into this issue and didn&#8217;t see any articles about a remedy for it. Here&#8217;s some background: I&#8217;ve set up an NPS server in Azure for a client so they can leverage the NPS MFA extension that you can integrate into your Azure AD [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":241039,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4018,4166],"tags":[4137],"class_list":["post-37957","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-azure","category-blog","tag-azure-mfa"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Removing an Azure Application ID Certificate When There are Multiple<\/title>\n<meta name=\"description\" content=\"When handling an Azure Application ID Certificate when there are multiple, you can follow these easy steps to fix the issue.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Removing an Azure Application ID Certificate When There are Multiple\" \/>\n<meta property=\"og:description\" content=\"When handling an Azure Application ID Certificate when there are multiple, you can follow these easy steps to fix the issue.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-09T21:11:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-23T03:06:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"XTIVIA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"XTIVIA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\"},\"author\":{\"name\":\"XTIVIA\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\"},\"headline\":\"Removing an Azure Application ID Certificate When There are Multiple\",\"datePublished\":\"2020-10-09T21:11:32+00:00\",\"dateModified\":\"2022-12-23T03:06:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\"},\"wordCount\":544,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg\",\"keywords\":[\"azure MFA\"],\"articleSection\":[\"Azure\",\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\",\"name\":\"Removing an Azure Application ID Certificate When There are Multiple\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg\",\"datePublished\":\"2020-10-09T21:11:32+00:00\",\"dateModified\":\"2022-12-23T03:06:39+00:00\",\"description\":\"When handling an Azure Application ID Certificate when there are multiple, you can follow these easy steps to fix the issue.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg\",\"width\":557,\"height\":291,\"caption\":\"Removing an Azure Application ID Certificate When There are Multiple\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Removing an Azure Application ID Certificate When There are Multiple\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1\",\"name\":\"XTIVIA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g\",\"caption\":\"XTIVIA\"},\"url\":\"https:\/\/virtual-dba.com\/author\/xtivia\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Removing an Azure Application ID Certificate When There are Multiple","description":"When handling an Azure Application ID Certificate when there are multiple, you can follow these easy steps to fix the issue.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/","og_locale":"en_US","og_type":"article","og_title":"Removing an Azure Application ID Certificate When There are Multiple","og_description":"When handling an Azure Application ID Certificate when there are multiple, you can follow these easy steps to fix the issue.","og_url":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2020-10-09T21:11:32+00:00","article_modified_time":"2022-12-23T03:06:39+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg","type":"image\/jpeg"}],"author":"XTIVIA","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"XTIVIA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/"},"author":{"name":"XTIVIA","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1"},"headline":"Removing an Azure Application ID Certificate When There are Multiple","datePublished":"2020-10-09T21:11:32+00:00","dateModified":"2022-12-23T03:06:39+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/"},"wordCount":544,"commentCount":0,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg","keywords":["azure MFA"],"articleSection":["Azure","Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/","url":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/","name":"Removing an Azure Application ID Certificate When There are Multiple","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg","datePublished":"2020-10-09T21:11:32+00:00","dateModified":"2022-12-23T03:06:39+00:00","description":"When handling an Azure Application ID Certificate when there are multiple, you can follow these easy steps to fix the issue.","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Removing-an-Azure-Application-ID-Certificate-When-There-are-Multiple.jpg","width":557,"height":291,"caption":"Removing an Azure Application ID Certificate When There are Multiple"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/removing-azure-application-id-certificate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Removing an Azure Application ID Certificate When There are Multiple"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/2d86f74bed0c3f1b49100f7fdf7d78d1","name":"XTIVIA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0d3648a00e319a37cf8d6d19f762acfbbb4fd0320fd8a6d6b1e64f44a2a6f259?s=96&d=mm&r=g","caption":"XTIVIA"},"url":"https:\/\/virtual-dba.com\/author\/xtivia\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37957","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=37957"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/37957\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/241039"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=37957"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=37957"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=37957"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}