{"id":1888,"date":"2022-08-16T23:00:35","date_gmt":"2022-08-16T23:00:35","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=1888"},"modified":"2023-06-03T10:27:24","modified_gmt":"2023-06-03T10:27:24","slug":"installing-ssl-certificate-in-exchange-server-with-powershell","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/","title":{"rendered":"Installing SSL Certificate in Exchange Server with PowerShell"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en.jpg\" alt=\"Installing SSL Certificate in Exchange \nusing PowerShell\" class=\"wp-image-1890\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>This tutorial will show you how to create a certificate signing request (CSR) for Exchange in PowerShell and then install an SSL certificate on your&nbsp;<a href=\"https:\/\/www.microsoft.com\/en-us\/microsoft-365\/exchange\/email\" target=\"_blank\" rel=\"noreferrer noopener\">Exchange<\/a>&nbsp;server. This tutorial works for Exchange version 2013, 2016 or 2019.<\/p>\n\n\n\n<p>You can check <a href=\"https:\/\/www.webhi.com\/how-to\/installing-and-configuring-an-ssl-certificate-in-microsoft-exchange-server\/\" target=\"_blank\" rel=\"noreferrer noopener\">Installing and Configuring an SSL Certificate in Microsoft Exchange Server<\/a> for the GUI Version.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Generate a CSR (certificate signing request).<\/h2>\n\n\n\n<p>Run this command to generate the certificate request.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\">[PS] C:\\&gt;$txtrequest = New-ExchangeCertificate \u2013Server \"EX01-2022\" \u2013GenerateRequest \u2013FriendlyName \"Exchange Certificate\" \u2013PrivateKeyExportable $true \u2013SubjectName \"c=MA, s=RABAT, l=Rabat, o=EXEMPLE, ou=IT, cn=mail.exemple.com\" \u2013DomainName mail.exemple.com,autodiscover.exemple.com\n<\/code><\/pre>\n\n\n\n<ul>\n<li><strong>Server<\/strong>: Specifies the Exchange Server on which the request will be generated.<\/li>\n\n\n\n<li><strong>GenerateRequest<\/strong>: Makes a third party certificate request.<\/li>\n\n\n\n<li><strong>FriendlyName<\/strong>: The friendly name of the certificate.<\/li>\n\n\n\n<li><strong>PrivateKeyExportable<\/strong>: Enables exporting and importing of the certificate to other Exchange Servers.<\/li>\n\n\n\n<li><strong>SubjectName<\/strong>: The certificate request&#8217;s topic field.<\/li>\n\n\n\n<li><strong>DomainName<\/strong>: Indicates one or more FQDNs.<\/li>\n<\/ul>\n\n\n\n<p>To export the certificate request to the shared folder, do the following command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\">[PS] C:\\&gt;[System.IO.File]::WriteAllBytes('\\\\ex01-2022\\Certs\\ExchangeCrt.req', [System.Text.Encoding]::Unicode.GetBytes($txtrequest))\n<\/code><\/pre>\n\n\n\n<p>Open the Exchange Admin Center and log in. Open the servers &gt; certificates menu. Ensure that the Exchange certificate is shown along with the pending request status.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1107\" height=\"704\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/pw-1-2.jpg\" alt=\"certificate panel exchange admin center\" class=\"wp-image-1971\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/pw-1-2.jpg 1107w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/pw-1-2-300x191.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/pw-1-2-1024x651.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/pw-1-2-768x488.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/pw-1-2-150x95.jpg 150w\" sizes=\"(max-width: 1107px) 100vw, 1107px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2 : Submit the Certificate<\/h2>\n\n\n\n<p>It is now time to contact your SSL certificate provider and present them with this <strong>CSR<\/strong> request in order to obtain a certificate file.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default\"><img decoding=\"async\" width=\"695\" height=\"608\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/15.png\" alt=\"\" class=\"wp-image-5019\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/15.png 695w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/15-300x262.png 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/05\/15-150x131.png 150w\" sizes=\"(max-width: 695px) 100vw, 695px\" \/><\/figure>\n\n\n\n<p>To open the file, use a text editor (such as Notepad). Then, copy the content and provide it in your SSL provider order, including the <code>\u2014\u2014-BEGIN NEW CERTIFICATE REQUEST\u2014\u2014-<\/code> and <code>\u2014\u2014-END NEW CERTIFICATE REQUEST\u2014\u2014-<\/code> tags. Some SSL providers ask for uploading the CSR.<\/p>\n\n\n\n<p>You can check our <a href=\"https:\/\/www.webhi.com\/cheap-ssl-certificate\" target=\"_blank\" rel=\"noreferrer noopener\">SSL Certificates Service<\/a> for cheap SSL certificates.<\/p>\n\n\n\n<p>Once you have the certificate, let&#8217;s complete the setup.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3 : Import the Certificate<\/h2>\n\n\n\n<p>You may now download the certificate from the Certificate Authority. The certificate may be downloaded and unpacked from the Certificate Authority and placed in the shared folder on Exchange Server.<\/p>\n\n\n\n<p>Name the certificate something you can remember. The certificate name in our case is <kbd>exchagecrt.crt<\/kbd>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\">[PS] C:\\&gt;Import-ExchangeCertificate -FileData ([System.IO.File]::ReadAllBytes('\\\\ex01-2022\\Certs\\<kbd>exchagecrt<\/kbd>.crt')) -PrivateKeyExportable:$true -Password (ConvertTo-SecureString -String 'P@ssw0rd' -AsPlainText -Force)<\/code><\/pre>\n\n\n\n<p>The status of the Exchange certificate will be Valid.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Assign Exchange services to the certificate<\/h2>\n\n\n\n<p>Copy the certificate thumbprint by double-clicking the certificate.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"756\" height=\"738\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/cerif.jpg\" alt=\"Exchange certificate 3rd party\" class=\"wp-image-5621\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/cerif.jpg 756w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/cerif-300x293.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/06\/cerif-150x146.jpg 150w\" sizes=\"(max-width: 756px) 100vw, 756px\" \/><\/figure>\n\n\n\n<p>Run the&nbsp;command below to assign services to the certificate. Enter the thumbprint value you copied.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\">[PS] C:\\>Enable-ExchangeCertificate -Server \"EX01-2022\" -Thumbprint 0271A7F1CA9AD8A27152CCAE044F968F068B14B8  -Services SMTP,IMAP,IIS -Force<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Restart IIS service<\/h2>\n\n\n\n<p>Restart the&nbsp;<strong>IIS<\/strong>&nbsp;on the Exchange Server.<\/p>\n\n\n\n<p>The certificate should now be installed successfully on your <strong>Exchange server<\/strong>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction This tutorial will show you how to create a certificate signing request (CSR) for Exchange in PowerShell and then install an SSL certificate on your&nbsp;Exchange&nbsp;server. This tutorial works for Exchange version 2013, 2016 or 2019. You can check Installing and Configuring an SSL Certificate in Microsoft Exchange Server for the GUI Version. Step 1: ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[2,53],"tags":[],"yoast_head":"\n<title>Installing SSL Certificate in Exchange Server with PowerShell - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"This tutorial will show you how to create a CSR for Exchange in PowerShell and then install an SSL certificate on your\u00a0Exchange\u00a0server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Installing SSL Certificate in Exchange Server with PowerShell - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"This tutorial will show you how to create a CSR for Exchange in PowerShell and then install an SSL certificate on your\u00a0Exchange\u00a0server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-16T23:00:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-06-03T10:27:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"Installing SSL Certificate in Exchange Server with PowerShell\",\"datePublished\":\"2022-08-16T23:00:35+00:00\",\"dateModified\":\"2023-06-03T10:27:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\"},\"wordCount\":363,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"SSL Certificate\",\"Windows system administration\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\",\"name\":\"Installing SSL Certificate in Exchange Server with PowerShell - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2022-08-16T23:00:35+00:00\",\"dateModified\":\"2023-06-03T10:27:24+00:00\",\"description\":\"This tutorial will show you how to create a CSR for Exchange in PowerShell and then install an SSL certificate on your\u00a0Exchange\u00a0server.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Installing SSL Certificate in Exchange Server with PowerShell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"Installing SSL Certificate in Exchange Server with PowerShell - WebHi Tutorials &amp; Documentations","description":"This tutorial will show you how to create a CSR for Exchange in PowerShell and then install an SSL certificate on your\u00a0Exchange\u00a0server.","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:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/","og_locale":"en_US","og_type":"article","og_title":"Installing SSL Certificate in Exchange Server with PowerShell - WebHi Tutorials &amp; Documentations","og_description":"This tutorial will show you how to create a CSR for Exchange in PowerShell and then install an SSL certificate on your\u00a0Exchange\u00a0server.","og_url":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2022-08-16T23:00:35+00:00","article_modified_time":"2023-06-03T10:27:24+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/08\/win_exchange_pw_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"Installing SSL Certificate in Exchange Server with PowerShell","datePublished":"2022-08-16T23:00:35+00:00","dateModified":"2023-06-03T10:27:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/"},"wordCount":363,"commentCount":3,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["SSL Certificate","Windows system administration"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/","url":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/","name":"Installing SSL Certificate in Exchange Server with PowerShell - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2022-08-16T23:00:35+00:00","dateModified":"2023-06-03T10:27:24+00:00","description":"This tutorial will show you how to create a CSR for Exchange in PowerShell and then install an SSL certificate on your\u00a0Exchange\u00a0server.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/installing-ssl-certificate-in-exchange-server-with-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"Installing SSL Certificate in Exchange Server with PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1781214743","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/1888"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=1888"}],"version-history":[{"count":34,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/1888\/revisions"}],"predecessor-version":[{"id":5623,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/1888\/revisions\/5623"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=1888"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=1888"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=1888"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}