{"id":33848,"date":"2024-07-04T20:28:48","date_gmt":"2024-07-04T18:28:48","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=33848"},"modified":"2025-02-14T15:29:04","modified_gmt":"2025-02-14T14:29:04","slug":"insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/","title":{"rendered":"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"200\" height=\"200\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg\" alt=\"\" class=\"wp-image-33849\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg 200w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1-150x150.jpg 150w\" sizes=\"auto, (max-width: 200px) 100vw, 200px\" \/><\/figure>\n<\/div>\n\n\n<p>A session presented by <a href=\"https:\/\/www.linkedin.com\/in\/ben-reader\/\">Ben Reader<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/Ben-Reader-1024x768.jpg\" alt=\"\" class=\"wp-image-33850\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/Ben-Reader-1024x768.jpg 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/Ben-Reader-300x225.jpg 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/Ben-Reader-768x576.jpg 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/Ben-Reader-1536x1152.jpg 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/Ben-Reader.jpg 2048w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>At the recent PowerShell Conference EU in Antwerp, IT professionals from around the world gathered to explore the latest advancements in PowerShell and its integration with other tools. One of the standout sessions focused on the powerful combination of SSH and PowerShell, providing a unified toolkit that revolutionizes the management of mixed IT environments.<\/p>\n\n\n\n<p><strong>A New Era for Windows Management with SSH<\/strong><\/p>\n\n\n\n<p>Traditionally, SSH has been the standard protocol for remote management in Linux environments due to its robust security and simplicity. The introduction of SSH support in Windows, particularly with PowerShell 7, marked a significant milestone. This session highlighted how Windows administrators can now leverage the same reliable protocol used in Linux, streamlining the management of mixed environments.<\/p>\n\n\n\n<p><strong>Simple Setup for Seamless Management<\/strong><\/p>\n\n\n\n<p>During this session, animated by Ben Reader, showed us how setting up SSH on a Windows Server 2025 machine:<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"1\">\n<li><strong>Installation<\/strong>: SSH server and client are included by default but need to be enabled.<\/li>\n\n\n\n<li><strong>Activation<\/strong>: Simple commands get SSH up and running, eliminating complex setup processes.<\/li>\n\n\n\n<li><strong>Firewall Configuration<\/strong>: Adjusting firewall rules to allow SSH traffic ensures both security and accessibility.<\/li>\n<\/ol>\n\n\n\n<p><strong>PowerShell: The Cross-Platform Unifier<\/strong><\/p>\n\n\n\n<p>Ben emphasized the real magic that happens when combining SSH with PowerShell. Configuring it as the default shell for SSH sessions creates a consistent environment across Windows, Linux, and Mac systems, reducing context switches and errors, and enhancing productivity.<\/p>\n\n\n\n<p>For Windows, this involves a registry tweak:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-ItemProperty -Path \"HKLM:\\Software\\OpenSSH\" -Name \"DefaultShell\" -Value \"C:\\Program Files\\PowerShell\\7\\pwsh.exe\"<\/code><\/pre>\n\n\n\n<p>A little demo for Linux and Mac, setting the default shell using the chsh command was demonstrated. As I\u2019m not a Linux\/Mac user I cannot provide you how things has been made, but in few code lines, Ben showed us how it\u2019s easy to implement.<\/p>\n\n\n\n<p><strong>Advanced Functionalities for Enhanced Management<\/strong><\/p>\n\n\n\n<p>During the session, Ben delved into advanced functionalities that SSH and PowerShell offer:<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"1\">\n<li><strong>Passwordless Access<\/strong>: Implementing key-based authentication enhances security and simplifies password management.<\/li>\n\n\n\n<li><strong>PS Remoting with SSH<\/strong>: This combination allows for secure and efficient remote system management.<\/li>\n\n\n\n<li><strong>Port Tunneling<\/strong>: Demonstrated as a versatile technique to securely access resources, enhancing network management flexibility.<\/li>\n<\/ol>\n\n\n\n<p><strong>Practical application<\/strong><\/p>\n\n\n\n<p>One of the highlights was a live demonstration showing how to configure a new Windows Server 2025 instance with SSH and PowerShell:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Install OpenSSH components\nAdd-WindowsCapability -Online -Name OpenSSH.Server\nAdd-WindowsCapability -Online -Name OpenSSH.Client\n\n# Start and configure SSH service\nStart-Service sshd\nSet-Service -Name sshd -StartupType 'Automatic'\n\n# Allow SSH in firewall\nNew-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22\n\n# Set PowerShell as the default shell\nSet-ItemProperty -Path \"HKLM:\\Software\\OpenSSH\" -Name \"DefaultShell\" -Value \"C:\\Program Files\\PowerShell\\7\\pwsh.exe\"\n<\/code><\/pre>\n\n\n\n<p>These steps transformed a fresh Windows server into an SSH-enabled powerhouse, ready to handle remote management tasks efficiently and securely.<\/p>\n\n\n\n<p><strong>Conclusion: Unified Tools for the Future<\/strong> In this session, Ben reinforced the value of incorporating SSH and PowerShell into IT management toolkits. Standardizing tools across different environments reduces downtime, enhances security, and boosts productivity. Highlighting that the future of IT management is unified, and SSH with PowerShell is leading the way.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A session presented by Ben Reader. At the recent PowerShell Conference EU in Antwerp, IT professionals from around the world gathered to explore the latest advancements in PowerShell and its integration with other tools. One of the standout sessions focused on the powerful combination of SSH and PowerShell, providing a unified toolkit that revolutionizes the [&hellip;]<\/p>\n","protected":false},"author":131,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[99],"tags":[3396,1361,3398],"type_dbi":[],"class_list":["post-33848","post","type-post","status-publish","format-standard","hentry","category-sql-server","tag-psconfeu","tag-ssh","tag-windows-2025"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell - dbi Blog<\/title>\n<meta name=\"description\" content=\"With Windows 2025 Microsoft finally implemented SSH by default. With few code lines it&#039;s now easy to activate and use for IT System Management.\" \/>\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.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell\" \/>\n<meta property=\"og:description\" content=\"With Windows 2025 Microsoft finally implemented SSH by default. With few code lines it&#039;s now easy to activate and use for IT System Management.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-04T18:28:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-14T14:29:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Emmanuel Champel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Emmanuel Champel\" \/>\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:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\"},\"author\":{\"name\":\"Emmanuel Champel\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a30b0f642bef775f75929f3b8c751142\"},\"headline\":\"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell\",\"datePublished\":\"2024-07-04T18:28:48+00:00\",\"dateModified\":\"2025-02-14T14:29:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\"},\"wordCount\":449,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg\",\"keywords\":[\"PSConfEU\",\"ssh\",\"Windows 2025\"],\"articleSection\":[\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\",\"name\":\"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg\",\"datePublished\":\"2024-07-04T18:28:48+00:00\",\"dateModified\":\"2025-02-14T14:29:04+00:00\",\"author\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a30b0f642bef775f75929f3b8c751142\"},\"description\":\"With Windows 2025 Microsoft finally implemented SSH by default. With few code lines it's now easy to activate and use for IT System Management.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg\",\"contentUrl\":\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg\",\"width\":200,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/www.dbi-services.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#website\",\"url\":\"https:\/\/www.dbi-services.com\/blog\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a30b0f642bef775f75929f3b8c751142\",\"name\":\"Emmanuel Champel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c64e85e09f5c4198ada118bb7de3e573300eb219eac63021edf540288946b7ec?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c64e85e09f5c4198ada118bb7de3e573300eb219eac63021edf540288946b7ec?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c64e85e09f5c4198ada118bb7de3e573300eb219eac63021edf540288946b7ec?s=96&d=mm&r=g\",\"caption\":\"Emmanuel Champel\"},\"url\":\"https:\/\/www.dbi-services.com\/blog\/author\/emmanuelchampel\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell - dbi Blog","description":"With Windows 2025 Microsoft finally implemented SSH by default. With few code lines it's now easy to activate and use for IT System Management.","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.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/","og_locale":"en_US","og_type":"article","og_title":"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell","og_description":"With Windows 2025 Microsoft finally implemented SSH by default. With few code lines it's now easy to activate and use for IT System Management.","og_url":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/","og_site_name":"dbi Blog","article_published_time":"2024-07-04T18:28:48+00:00","article_modified_time":"2025-02-14T14:29:04+00:00","og_image":[{"width":200,"height":200,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg","type":"image\/jpeg"}],"author":"Emmanuel Champel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Emmanuel Champel","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/"},"author":{"name":"Emmanuel Champel","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a30b0f642bef775f75929f3b8c751142"},"headline":"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell","datePublished":"2024-07-04T18:28:48+00:00","dateModified":"2025-02-14T14:29:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/"},"wordCount":449,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg","keywords":["PSConfEU","ssh","Windows 2025"],"articleSection":["SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/","url":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/","name":"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg","datePublished":"2024-07-04T18:28:48+00:00","dateModified":"2025-02-14T14:29:04+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a30b0f642bef775f75929f3b8c751142"},"description":"With Windows 2025 Microsoft finally implemented SSH by default. With few code lines it's now easy to activate and use for IT System Management.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2024\/07\/psconfeu_logo-1.jpg","width":200,"height":200},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/insights-from-powershell-conference-eu-managing-it-environments-with-ssh-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Insights from PowerShell Conference EU: Managing IT Environments with SSH &amp; PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/a30b0f642bef775f75929f3b8c751142","name":"Emmanuel Champel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c64e85e09f5c4198ada118bb7de3e573300eb219eac63021edf540288946b7ec?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c64e85e09f5c4198ada118bb7de3e573300eb219eac63021edf540288946b7ec?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c64e85e09f5c4198ada118bb7de3e573300eb219eac63021edf540288946b7ec?s=96&d=mm&r=g","caption":"Emmanuel Champel"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/emmanuelchampel\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/33848","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/131"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=33848"}],"version-history":[{"count":1,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/33848\/revisions"}],"predecessor-version":[{"id":33851,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/33848\/revisions\/33851"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=33848"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=33848"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=33848"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=33848"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}