{"id":4603,"date":"2017-04-18T07:33:12","date_gmt":"2017-04-18T12:33:12","guid":{"rendered":"https:\/\/www.praim.com\/?p=4603"},"modified":"2019-01-09T10:03:23","modified_gmt":"2019-01-09T15:03:23","slug":"powershell-scripts-windows-way-vs-agile-way","status":"publish","type":"post","link":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/","title":{"rendered":"PowerShell scripts: Windows way vs &#8216;Agile&#8217; way"},"content":{"rendered":"<p style=\"text-align: justify;\">On Windows 7 and later releases of the Operating System, it is possible to use <strong>PowerShell Remoting<\/strong>.<\/p>\n<p style=\"text-align: justify;\">This service provides the user with PowerShell terminals and allows him to execute PS scripts on remote computers. Once the connection to the remote computer is established, all PS feature are available, like to mount network shares or installing software from the command line.<\/p>\n<p style=\"text-align: justify;\">From now on, the machine which will issue the PowerShell commands will be called &#8216;Client&#8217;, while the one which will execute the commands will be called &#8216;Server&#8217;.<\/p>\n<p>&nbsp;<\/p>\n<p>First of all, the PowerShell Remoting service should be enabled on the Server (it is disabled by default).<\/p>\n<h5 id=\"HowtoexecutePowerShellscriptsonremoteWindowsComputers?-IncasetheServerisnotpartofanActiveDirectoryDomain:\">In case the Server is not part of an Active Directory Domain:<\/h5>\n<ul>\n<li>Start a PowerShell with Administrator privileges.\n<ul>\n<li>From start menu, select PowerShell shortcut and right-click it. In the contextual menu, select Execute as Administrator.<\/li>\n<\/ul>\n<\/li>\n<li>Once the PowerShell windows is open with the correct privileges, execute the command:\n<ul>\n<li>Server | PS\u00a0&gt; Enable-PSRemoting<\/li>\n<\/ul>\n<\/li>\n<li>The command:\n<ul>\n<li>starts WinRM services.<\/li>\n<li>enables WinRM services autostart.<\/li>\n<li>configures the Windows Firewall to allow WinRM incoming connections.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h5 id=\"HowtoexecutePowerShellscriptsonremoteWindowsComputers?-IncasetheServerispartofanActiveDirectoryDomain,asetofGPOspoliciescanbeused.\">In case the Server is part of an Active Directory Domain, a set of GPOs policies can be used.<\/h5>\n<p>The GPOs, basically, performs the same operations described above.<\/p>\n<p><strong>The first GPO will enable the WinRM service:<\/strong><\/p>\n<ol>\n<li>Create a new GPO<\/li>\n<li>In GPO editor, select<code> Policies &gt; Administrative Templates &gt; Windows Components &gt; Windows Remote Management (WinRM) &gt; WinRM Service<\/code><br \/>\nOpen <code>Allow Remote Server management through WinRM<\/code> policy setting and set the policy to Enabled.<\/li>\n<li>Set <strong>IPv4<\/strong> and <strong>IPv6\u00a0<\/strong>filters to <code>*<\/code> or as needed<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p><strong>The second GPO will create the Windows Firewall rule to accept remote connections:<\/strong><\/p>\n<ol>\n<li>In GPO editor,\u00a0 select <code>Policies &gt; Windows Settings &gt; Security Settings &gt; Windows Firewall with Advanced Security &gt; Windows Firewall\u2026 &gt; Inbound Rules<\/code><\/li>\n<li>Right-click and select <strong>New Rule\u2026<\/strong><\/li>\n<li>Select the radio button Predefined and <code>Windows Remote Management<\/code><\/li>\n<li>Click Next<\/li>\n<li>Click Next, select <code>Allow<\/code> the connection and then <strong>Finish<\/strong>.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<p>After having enabled WinRM services, both Server and Client should trust each other. If both PCs are part of the same Domain, they already trust each other.<\/p>\n<p>Conversely, if they are <u>not<\/u> in the same Domain, their trusted host list should contain the other PC&#8217;s address.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>To set the Trusted Host&#8217;s list it is possible to run in a PowerShell:<\/strong><\/p>\n<p>Client and Server | PS &gt; Set-Item wsman:\\localhost\\client\\trustedhosts &lt;ip1&gt;,&lt; ip2&gt;,&lt; ip3&gt;<\/p>\n<p>The argument of the command is a comma separated list of IP addresses. It is possible to use the * character to specify ranges of IPs.<\/p>\n<p>The value of the Trusted Hosts setting can be obtained with the command:<\/p>\n<p>Client and Server | PS &gt; Get-Item WSMan:\\localhost\\Client\\TrustedHosts<\/p>\n<p>&nbsp;<\/p>\n<p><strong>To apply the new Trusted Hosts setting it is needed to restart the WinRM service using the command:<\/strong><\/p>\n<p>Client and Server | PS &gt; Restart-Service WinRM<\/p>\n<p>&nbsp;<\/p>\n<p>Once the TrustedHosts setting is properly configured we can start a remote PowerShell with the command:<\/p>\n<p>Client | PS &gt; Enter-PSSession -ComputerName &lt;COMPUTER&gt; -Credential\u00a0 &lt;USER&gt;<\/p>\n<p>where &lt;USER&gt; is the name of the user on the remote computer.<\/p>\n<p>&nbsp;<\/p>\n<p><strong>To execute a command on the remote machine and get the output on the local machine the syntax is:<\/strong><\/p>\n<p>Client | PS &gt; Invoke-Command -ComputerName &lt;COMPUTER&gt; -ScriptBlock { &lt;COMMAND&gt; } -credential &lt;USERNAME&gt;<\/p>\n<p>Before the execution, the credentials for the user &lt;USERNAME&gt; will be asked.<\/p>\n<h3>There is a simpler and immediate mode: use the <strong><a href=\"https:\/\/www.praim.com\/products\/software\/agile\">Praim Agile<\/a><\/strong> software.<\/h3>\n<p style=\"text-align: justify;\">The Agile devices can receive third-party software packages through a <strong>simple process included in the ThinMan management console.<\/strong><br \/>\n<strong>In this way the procedure described just above is not necessary<\/strong>, the process becomes elementary and enables the IT manager to perform all the management tasks directly from the console on all devices or groups.<br \/>\nFor more technical details see the section Third party Software Installation of the wiki page:<\/p>\n<p><strong><a class=\"external-link\" href=\"https:\/\/wiki.praim.com\/display\/ThinMan\/Contextual+Menu+-+Device+Update+for+Windows+Embedded\" rel=\"nofollow\">https:\/\/wiki.praim.com\/display\/ThinMan\/Contextual+Menu+-+Device+Update+for+Windows+Embedded<\/a><\/strong><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>On Windows 7 and later releases of the  &#8230;<\/p>\n","protected":false},"author":7,"featured_media":4605,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"categories":[61],"tags":[89],"class_list":["post-4603","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-expert-content","tag-agile4pc"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PowerShell scripts: Windows way vs &#039;Agile&#039; way &#8211; Praim<\/title>\n<meta name=\"description\" content=\"In this article we will go through two different ways of executing PowerShell scripts: by using Windows and by using Praim Agile.\" \/>\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.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PowerShell scripts: Windows way vs &#039;Agile&#039; way &#8211; Praim\" \/>\n<meta property=\"og:description\" content=\"In this article we will go through two different ways of executing PowerShell scripts: by using Windows and by using Praim Agile.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/\" \/>\n<meta property=\"og:site_name\" content=\"Praim\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-18T12:33:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-01-09T15:03:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.praim.com\/wp-content\/uploads\/2018\/08\/powershell.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Sara Curzel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sara Curzel\" \/>\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.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/\"},\"author\":{\"name\":\"Sara Curzel\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#\\\/schema\\\/person\\\/afe78fd5481f815bd53bb7882f8485a0\"},\"headline\":\"PowerShell scripts: Windows way vs &#8216;Agile&#8217; way\",\"datePublished\":\"2017-04-18T12:33:12+00:00\",\"dateModified\":\"2019-01-09T15:03:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/\"},\"wordCount\":630,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.praim.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/powershell.png\",\"keywords\":[\"Agile4PC\"],\"articleSection\":[\"Expert content\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/\",\"url\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/\",\"name\":\"PowerShell scripts: Windows way vs 'Agile' way &#8211; Praim\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.praim.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/powershell.png\",\"datePublished\":\"2017-04-18T12:33:12+00:00\",\"dateModified\":\"2019-01-09T15:03:23+00:00\",\"description\":\"In this article we will go through two different ways of executing PowerShell scripts: by using Windows and by using Praim Agile.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.praim.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/powershell.png\",\"contentUrl\":\"https:\\\/\\\/www.praim.com\\\/wp-content\\\/uploads\\\/2018\\\/08\\\/powershell.png\",\"width\":750,\"height\":300,\"caption\":\"powershell script\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/news\\\/powershell-scripts-windows-way-vs-agile-way\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.praim.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PowerShell scripts: Windows way vs &#8216;Agile&#8217; way\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.praim.com\\\/en\\\/\",\"name\":\"Praim\",\"description\":\"Smart Access to your Cloud\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.praim.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#organization\",\"name\":\"Praim srl\",\"url\":\"https:\\\/\\\/www.praim.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.praim.com\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/praim-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.praim.com\\\/wp-content\\\/uploads\\\/2019\\\/12\\\/praim-logo.png\",\"width\":230,\"height\":230,\"caption\":\"Praim srl\"},\"image\":{\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.praim.com\\\/en\\\/#\\\/schema\\\/person\\\/afe78fd5481f815bd53bb7882f8485a0\",\"name\":\"Sara Curzel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1d37124a087ecaac10324440f38d1d17d1019b1c32b33d1e0b412c4239536d06?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1d37124a087ecaac10324440f38d1d17d1019b1c32b33d1e0b412c4239536d06?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1d37124a087ecaac10324440f38d1d17d1019b1c32b33d1e0b412c4239536d06?s=96&d=mm&r=g\",\"caption\":\"Sara Curzel\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PowerShell scripts: Windows way vs 'Agile' way &#8211; Praim","description":"In this article we will go through two different ways of executing PowerShell scripts: by using Windows and by using Praim Agile.","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.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/","og_locale":"en_US","og_type":"article","og_title":"PowerShell scripts: Windows way vs 'Agile' way &#8211; Praim","og_description":"In this article we will go through two different ways of executing PowerShell scripts: by using Windows and by using Praim Agile.","og_url":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/","og_site_name":"Praim","article_published_time":"2017-04-18T12:33:12+00:00","article_modified_time":"2019-01-09T15:03:23+00:00","og_image":[{"width":750,"height":300,"url":"https:\/\/www.praim.com\/wp-content\/uploads\/2018\/08\/powershell.png","type":"image\/png"}],"author":"Sara Curzel","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Sara Curzel","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#article","isPartOf":{"@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/"},"author":{"name":"Sara Curzel","@id":"https:\/\/www.praim.com\/en\/#\/schema\/person\/afe78fd5481f815bd53bb7882f8485a0"},"headline":"PowerShell scripts: Windows way vs &#8216;Agile&#8217; way","datePublished":"2017-04-18T12:33:12+00:00","dateModified":"2019-01-09T15:03:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/"},"wordCount":630,"commentCount":0,"publisher":{"@id":"https:\/\/www.praim.com\/en\/#organization"},"image":{"@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#primaryimage"},"thumbnailUrl":"https:\/\/www.praim.com\/wp-content\/uploads\/2018\/08\/powershell.png","keywords":["Agile4PC"],"articleSection":["Expert content"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/","url":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/","name":"PowerShell scripts: Windows way vs 'Agile' way &#8211; Praim","isPartOf":{"@id":"https:\/\/www.praim.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#primaryimage"},"image":{"@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#primaryimage"},"thumbnailUrl":"https:\/\/www.praim.com\/wp-content\/uploads\/2018\/08\/powershell.png","datePublished":"2017-04-18T12:33:12+00:00","dateModified":"2019-01-09T15:03:23+00:00","description":"In this article we will go through two different ways of executing PowerShell scripts: by using Windows and by using Praim Agile.","breadcrumb":{"@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#primaryimage","url":"https:\/\/www.praim.com\/wp-content\/uploads\/2018\/08\/powershell.png","contentUrl":"https:\/\/www.praim.com\/wp-content\/uploads\/2018\/08\/powershell.png","width":750,"height":300,"caption":"powershell script"},{"@type":"BreadcrumbList","@id":"https:\/\/www.praim.com\/en\/news\/powershell-scripts-windows-way-vs-agile-way\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.praim.com\/en\/"},{"@type":"ListItem","position":2,"name":"PowerShell scripts: Windows way vs &#8216;Agile&#8217; way"}]},{"@type":"WebSite","@id":"https:\/\/www.praim.com\/en\/#website","url":"https:\/\/www.praim.com\/en\/","name":"Praim","description":"Smart Access to your Cloud","publisher":{"@id":"https:\/\/www.praim.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.praim.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.praim.com\/en\/#organization","name":"Praim srl","url":"https:\/\/www.praim.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.praim.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.praim.com\/wp-content\/uploads\/2019\/12\/praim-logo.png","contentUrl":"https:\/\/www.praim.com\/wp-content\/uploads\/2019\/12\/praim-logo.png","width":230,"height":230,"caption":"Praim srl"},"image":{"@id":"https:\/\/www.praim.com\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.praim.com\/en\/#\/schema\/person\/afe78fd5481f815bd53bb7882f8485a0","name":"Sara Curzel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1d37124a087ecaac10324440f38d1d17d1019b1c32b33d1e0b412c4239536d06?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1d37124a087ecaac10324440f38d1d17d1019b1c32b33d1e0b412c4239536d06?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1d37124a087ecaac10324440f38d1d17d1019b1c32b33d1e0b412c4239536d06?s=96&d=mm&r=g","caption":"Sara Curzel"}}]}},"_links":{"self":[{"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/posts\/4603","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/comments?post=4603"}],"version-history":[{"count":1,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/posts\/4603\/revisions"}],"predecessor-version":[{"id":4606,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/posts\/4603\/revisions\/4606"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/media\/4605"}],"wp:attachment":[{"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/media?parent=4603"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/categories?post=4603"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.praim.com\/en\/wp-json\/wp\/v2\/tags?post=4603"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}