{"id":76918,"date":"2023-08-28T12:40:00","date_gmt":"2023-08-28T10:40:00","guid":{"rendered":"https:\/\/jotelulu.com\/en-gb\/blog\/"},"modified":"2025-12-12T15:10:34","modified_gmt":"2025-12-12T14:10:34","slug":"schedule-powershell-script","status":"publish","type":"post","link":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/","title":{"rendered":"How to create task scheduling with PowerShell Script"},"content":{"rendered":"<p>Keep reading to learn <strong>how to create task scheduling with PowerShell scripts<\/strong> and manage the automated execution of your scripts at specific intervals.<\/p>\n<p>Many of us eventually need to <strong>schedule tasks<\/strong> to run <strong>automatically<\/strong> every <strong>certain period of time<\/strong> (for example, every few hours, daily, weekly, and so on).<\/p>\n<p>This approach helps reduce our workload as administrators\u2014or simply ensures that we don\u2019t forget to perform certain repetitive tasks. Whether the task is tedious or business-critical, automating its execution saves time and prevents human error.<\/p>\n<p>Usually, we use the Windows Task Scheduler manually through the graphical interface (GUI). However, as you may already know, using <strong>PowerShell<\/strong> is a powerful way to save time and simplify recurring processes.<\/p>\n<p>Let\u2019s imagine that we want to check our server\u2019s disk health once per week to ensure there are no errors or potential failures. We want this script to run every Monday at 3:45 PM, for instance.<\/p>\n<h2><strong>Scheduling a PowerShell script using the PowerShell console<\/strong><\/h2>\n<p><strong>NOTE:<\/strong> <em>This guide assumes that you\u2019re using a relatively recent system version and PowerShell with the cmdlet <code>New-ScheduledTaskTrigger<\/code>. For older systems running PowerShell 2.0, you\u2019ll need to use the <code>TaskScheduler<\/code> module instead, which works differently.<\/em><\/p>\n<p>The first step is to <strong>create a \u201c.ps1\u201d file<\/strong> in a <strong>path accessible<\/strong> to the user who will create and execute the task. In this example, the path is <code>C:\\Data\\<\/code> and the script file is named <code>MonitorDiscosServidor.ps1<\/code>.<\/p>\n<p>Inside that script, insert your PowerShell code\u2014the one you want to run automatically. It\u2019s always a good idea to <strong>test the script manually<\/strong> before scheduling it. Code copied from other sources can sometimes include hidden characters or formatting errors that may cause execution issues.<\/p>\n<p>Once verified, we can move on to scheduling the task. The first time may feel lengthy, but as you become familiar with the process, you\u2019ll see how much time\u2014and how many future mistakes\u2014it helps you avoid.<\/p>\n<p>The <strong>complete script<\/strong> looks like this (we\u2019ll explain each part below):<\/p>\n<pre><em>\r\n$Programacion1 = New-ScheduledTaskTrigger -Weekly -WeeksInterval 1 -DaysOfWeek Monday -At 2:40pm\r\n$User = \"administrator\"\r\n$Accion1 = New-ScheduledTaskAction -Execute \"PowerShell.exe\" -Argument \"C:\\Data\\MonitorDiscosServidor.ps1\"\r\nRegister-ScheduledTask -TaskName \"MonitorDiscosServidor\" -Trigger $Programacion1 -User $User -Action $Accion1 -RunLevel Highest -Force\r\n<\/em><\/pre>\n<h3><strong>Explanation:<\/strong><\/h3>\n<ul>\n<li><strong>$Programacion1<\/strong>: defines how often the script runs, creating the <strong>task trigger<\/strong>.<\/li>\n<\/ul>\n<p>This line:<\/p>\n<pre><em>New-ScheduledTaskTrigger -Weekly -WeeksInterval 1 -DaysOfWeek Monday -At 2:40pm<\/em><\/pre>\n<p>means the task will:<\/p>\n<ul>\n<li>Run <strong>weekly<\/strong> (<code>-Weekly -WeeksInterval 1<\/code>).<\/li>\n<li>Execute on <strong>Mondays<\/strong> (<code>-DaysOfWeek Monday<\/code>).<\/li>\n<li>Start at <strong>2:40 PM<\/strong> (<code>-At 2:40pm<\/code>).<\/li>\n<\/ul>\n<p>Note: Be careful with the AM\/PM format, as it can easily cause confusion.<\/p>\n<p>Next, we define the user account responsible for running the task:<\/p>\n<pre><em>$User = \"administrator\"<\/em><\/pre>\n<p>Then, we specify the action to execute:<\/p>\n<pre><em>$Accion1 = New-ScheduledTaskAction -Execute \"PowerShell.exe\" -Argument \"C:\\Data\\MonitorDiscosServidor.ps1\"<\/em><\/pre>\n<ul>\n<li><strong>$Accion1<\/strong>: contains the command to execute.<\/li>\n<li><strong>-Execute &#8220;PowerShell.exe&#8221;<\/strong>: specifies PowerShell as the executable.<\/li>\n<li><strong>-Argument &#8220;C:\\Data\\MonitorDiscosServidor.ps1&#8221;<\/strong>: provides the absolute path to the script.<\/li>\n<\/ul>\n<p>Finally, we register the scheduled task:<\/p>\n<pre><em>\r\nRegister-ScheduledTask -TaskName \"MonitorDiscosServidor\" -Trigger $Programacion1 -User $User -Action $Accion1 -RunLevel Highest -Force\r\n<\/em><\/pre>\n<ul>\n<li><strong>-TaskName<\/strong>: assigns a name to the task.<\/li>\n<li><strong>-Trigger<\/strong>: defines the trigger variable.<\/li>\n<li><strong>-User<\/strong>: specifies the user account executing the task.<\/li>\n<li><strong>-Action<\/strong>: declares the action defined earlier.<\/li>\n<li><strong>-RunLevel Highest<\/strong>: ensures the task runs with elevated privileges.<\/li>\n<li><strong>-Force<\/strong>: forces execution without confirmation prompts.<\/li>\n<\/ul>\n<p>As always, <strong>PowerShell ISE<\/strong> is recommended. It allows you to test, debug, and refine your commands interactively before applying them in production.<\/p>\n<p>Once everything is ready, run the commands. If successful, you should see confirmation messages similar to the ones below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-21563\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2023\/08\/Imagen.-Damos-de-alta-la-tarea-programada-para-lanzar-un-script-PowerShell-1.jpg\" alt=\"Registering a scheduled task to run a PowerShell script\" width=\"1937\" height=\"1097\" \/><\/p>\n<p>Schedule a quick test run (e.g., five minutes from now) to make sure everything works as expected. After execution, <strong>verify the outcome<\/strong> and fine-tune if necessary.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-21562\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2023\/08\/Imagen.-Comprobamos-la-ejecucion-de-la-tarea-programada-del-script-PowerShell-1.jpg\" alt=\"Checking the execution of the scheduled PowerShell script\" width=\"1937\" height=\"1097\" \/><\/p>\n<p><strong>NOTE:<\/strong> <em>For more information about the cmdlets, you can check PowerShell\u2019s built-in help or visit the Microsoft Docs page for <a href=\"https:\/\/learn.microsoft.com\/en-us\/powershell\/module\/scheduledtasks\/new-scheduledtasktrigger?view=windowsserver2022-ps\" target=\"_blank\" rel=\"noopener\">New-ScheduledTaskTrigger<\/a>.<\/em><\/p>\n<h2><strong>Conclusions and Next Steps<\/strong><\/h2>\n<p>This article has shown <strong>how to create task scheduling with PowerShell scripts<\/strong>\u2014and more specifically, how to automate the execution of PowerShell scripts via the Task Scheduler using PowerShell commands.<\/p>\n<p>The entire process requires only a few steps and can be set up in minutes once you\u2019re comfortable with the syntax. You can find more PowerShell tips and tutorials on our <a href=\"https:\/\/jotelulu.com\/en-gb\/blog\/\" target=\"_blank\" rel=\"noopener\">blog<\/a>.<\/p>\n<p>If you run into any issues or need help, don\u2019t hesitate to contact us. We\u2019ll be happy to help you troubleshoot your PowerShell configuration.<\/p>\n<p><strong>Thank you for trusting Jotelulu!<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Keep reading to learn how to create task scheduling with PowerShell scripts and manage the automated execution of your scripts at specific intervals. Many of us eventually need to schedule tasks to run automatically every certain period of time (for example, every few hours, daily, weekly, and so on). This approach helps reduce our workload [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":76919,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[287],"tags":[],"class_list":["post-76918","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sysadmin-en-gb"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create task scheduling with PowerShell Script - Jotelulu<\/title>\n<meta name=\"description\" content=\"Learn how to schedule PowerShell scripts using PowerShell cmdlets. Automate your scripts, create weekly jobs, and save admin time with this step-by-step guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create task scheduling with PowerShell Script - Jotelulu\" \/>\n<meta property=\"og:description\" content=\"Learn how to schedule PowerShell scripts using PowerShell cmdlets. Automate your scripts, create weekly jobs, and save admin time with this step-by-step guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/\" \/>\n<meta property=\"og:site_name\" content=\"Jotelulu\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-28T10:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-12T14:10:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Programacion-tareas-script-powershell-scaled-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1549\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Juan Ignacio Oller Aznar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Juan Ignacio Oller Aznar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/\"},\"author\":{\"name\":\"Juan Ignacio Oller Aznar\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\"},\"headline\":\"How to create task scheduling with PowerShell Script\",\"datePublished\":\"2023-08-28T10:40:00+00:00\",\"dateModified\":\"2025-12-12T14:10:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/\"},\"wordCount\":656,\"image\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Programacion-tareas-script-powershell-scaled-2.jpg\",\"articleSection\":[\"Sysadmin\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/\",\"name\":\"How to create task scheduling with PowerShell Script - Jotelulu\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Programacion-tareas-script-powershell-scaled-2.jpg\",\"datePublished\":\"2023-08-28T10:40:00+00:00\",\"dateModified\":\"2025-12-12T14:10:34+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\"},\"description\":\"Learn how to schedule PowerShell scripts using PowerShell cmdlets. Automate your scripts, create weekly jobs, and save admin time with this step-by-step guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Programacion-tareas-script-powershell-scaled-2.jpg\",\"contentUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Programacion-tareas-script-powershell-scaled-2.jpg\",\"width\":2560,\"height\":1549},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/schedule-powershell-script\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create task scheduling with PowerShell Script\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#website\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/\",\"name\":\"Jotelulu\",\"description\":\"Cloud Paradise for Tech Companies\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\",\"name\":\"Juan Ignacio Oller Aznar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"caption\":\"Juan Ignacio Oller Aznar\"},\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/author\\\/juanignaciooller\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create task scheduling with PowerShell Script - Jotelulu","description":"Learn how to schedule PowerShell scripts using PowerShell cmdlets. Automate your scripts, create weekly jobs, and save admin time with this step-by-step guide.","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:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/","og_locale":"en_GB","og_type":"article","og_title":"How to create task scheduling with PowerShell Script - Jotelulu","og_description":"Learn how to schedule PowerShell scripts using PowerShell cmdlets. Automate your scripts, create weekly jobs, and save admin time with this step-by-step guide.","og_url":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/","og_site_name":"Jotelulu","article_published_time":"2023-08-28T10:40:00+00:00","article_modified_time":"2025-12-12T14:10:34+00:00","og_image":[{"width":2560,"height":1549,"url":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Programacion-tareas-script-powershell-scaled-2.jpg","type":"image\/jpeg"}],"author":"Juan Ignacio Oller Aznar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Juan Ignacio Oller Aznar","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#article","isPartOf":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/"},"author":{"name":"Juan Ignacio Oller Aznar","@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9"},"headline":"How to create task scheduling with PowerShell Script","datePublished":"2023-08-28T10:40:00+00:00","dateModified":"2025-12-12T14:10:34+00:00","mainEntityOfPage":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/"},"wordCount":656,"image":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#primaryimage"},"thumbnailUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Programacion-tareas-script-powershell-scaled-2.jpg","articleSection":["Sysadmin"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/","url":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/","name":"How to create task scheduling with PowerShell Script - Jotelulu","isPartOf":{"@id":"https:\/\/jotelulu.com\/en-gb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#primaryimage"},"image":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#primaryimage"},"thumbnailUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Programacion-tareas-script-powershell-scaled-2.jpg","datePublished":"2023-08-28T10:40:00+00:00","dateModified":"2025-12-12T14:10:34+00:00","author":{"@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9"},"description":"Learn how to schedule PowerShell scripts using PowerShell cmdlets. Automate your scripts, create weekly jobs, and save admin time with this step-by-step guide.","breadcrumb":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#primaryimage","url":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Programacion-tareas-script-powershell-scaled-2.jpg","contentUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Programacion-tareas-script-powershell-scaled-2.jpg","width":2560,"height":1549},{"@type":"BreadcrumbList","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/schedule-powershell-script\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jotelulu.com\/en-gb\/"},{"@type":"ListItem","position":2,"name":"How to create task scheduling with PowerShell Script"}]},{"@type":"WebSite","@id":"https:\/\/jotelulu.com\/en-gb\/#website","url":"https:\/\/jotelulu.com\/en-gb\/","name":"Jotelulu","description":"Cloud Paradise for Tech Companies","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jotelulu.com\/en-gb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9","name":"Juan Ignacio Oller Aznar","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","caption":"Juan Ignacio Oller Aznar"},"url":"https:\/\/jotelulu.com\/en-gb\/author\/juanignaciooller\/"}]}},"_links":{"self":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/76918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/comments?post=76918"}],"version-history":[{"count":3,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/76918\/revisions"}],"predecessor-version":[{"id":77041,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/76918\/revisions\/77041"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/media\/76919"}],"wp:attachment":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/media?parent=76918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/categories?post=76918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/tags?post=76918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}