{"id":9706,"date":"2022-11-15T06:25:00","date_gmt":"2022-11-15T05:25:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=9706"},"modified":"2022-08-27T13:36:03","modified_gmt":"2022-08-27T11:36:03","slug":"copiar-archivos-con-powershell","status":"publish","type":"post","link":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/","title":{"rendered":"Copiar archivos con PowerShell"},"content":{"rendered":"\n<p>\u00bfC\u00f3mo copiar un archivo a otra carpeta con el script de copia de Windows PowerShell? Hay varias opciones eficientes para copiar archivos de Windows desde el s\u00edmbolo del sistema PS. <\/p>\n\n\n\n<p>En la secuencia de comandos de PowerShell, utilice el comando Copy-Item en un indicador de Windows PowerShell. Tambi\u00e9n es posible copiar desde la GUI, pero esta opci\u00f3n es muy manual.<\/p>\n\n\n\n<p>De hecho, siempre es posible copiar archivos y carpetas utilizando la interfaz proporcionada por Windows. Pero es m\u00e1s eficiente hacer copias grandes y espec\u00edficas.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-como-copiar-archivos-a-otra-carpeta-con-powershell\">\u00bfC\u00f3mo copiar archivos a otra carpeta con PowerShell?<\/h2>\n\n\n\n<p>De hecho, el scripting de Windows Shell es mucho m\u00e1s eficiente que la copia manual. Por ejemplo, para copiar 500&#8217;000 archivos de texto con extensiones o nombres muy espec\u00edficos. Y para asegurarse de que todos fueron copiados, sin ning\u00fan error.<\/p>\n\n\n\n<p>O con una estricta comprobaci\u00f3n y registro de errores. Manualmente, esta operaci\u00f3n llevar\u00eda d\u00edas. El comando Copy-Item de PowerShell es la mejor opci\u00f3n disponible.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Para abrir el s\u00edmbolo del sistema de Windows PowerShell<\/h3>\n\n\n\n<p>Vamos a empezar el tutorial sobre hoy copiar un archivo con Windows PowerShell. Desde el men\u00fa de inicio de Windows 10, por ejemplo, escribe \u00abWindows PowerShell\u00bb en el campo de b\u00fasqueda y haz clic en el icono.<\/p>\n\n\n\n<p><strong>Comando PS para copiar un archivo de una carpeta<\/strong> a otra existente manteniendo el mismo nombre y extensi\u00f3n:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Copy-Item -Path C:\\folder\\file.txt -Destination C:\\newfolder\\file.txt<\/pre>\n\n\n\n<p>Por cierto, con Power Shell, para modificar el nombre de la copia, basta con cambiar el nombre del archivo de destino:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Copy-Item -Path C:\\folder\\file.txt -Destination C:\\folder\\newfile.txt<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Ejemplo de script powershell para copiar todos los archivos con filtro en el nombre<\/h3>\n\n\n\n<p>Es decir, con una extensi\u00f3n o un nombre espec\u00edfico antes del separador. Este script de ejemplo copia todos los archivos de texto, con extensi\u00f3n TXT, en la carpeta newfolder. Y permite sobrescribir los archivos si ya existen con la opci\u00f3n -Force.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Copy-Item -Path C:\\folder\\file*.txt -Destination C:\\newfolder -Force<\/pre>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"981\" height=\"423\" src=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/08\/powershell-copiar-archivo-comando-copy-Item-opcion-force_es.jpg\" alt=\"Copiar archivos con el comando Copy-Item de Windows Powershell.\" class=\"wp-image-9709\" srcset=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/08\/powershell-copiar-archivo-comando-copy-Item-opcion-force_es.jpg 981w, https:\/\/expert-only.com\/wp-content\/uploads\/2022\/08\/powershell-copiar-archivo-comando-copy-Item-opcion-force_es-300x129.jpg 300w, https:\/\/expert-only.com\/wp-content\/uploads\/2022\/08\/powershell-copiar-archivo-comando-copy-Item-opcion-force_es-768x331.jpg 768w\" sizes=\"auto, (max-width: 981px) 100vw, 981px\" \/><figcaption>Copiar archivos con el comando Copy-Item de Windows Powershell.<\/figcaption><\/figure><\/div>\n\n\n<p>Existen otras opciones de Scripting para el comando Copy-Item, por ejemplo:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>La primera: <strong><strong>-Force<\/strong><\/strong> para sobrescribir el archivo de destino.<\/li><li>O bien:<strong> -Recurse<\/strong> para copiar recursivamente desde el origen o el destino, dependiendo de d\u00f3nde est\u00e9 la palabra clave en el comando.<\/li><li>La opci\u00f3n <strong>-Filter<\/strong> para separar el filtro de la ubicaci\u00f3n de origen de la copia.<\/li><\/ul>\n\n\n\n<p>Tenga en cuenta que esta lista de opciones no es exhaustiva.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Habilitar expl\u00edcitamente el aviso de confirmaci\u00f3n de copia con un script PS<\/h3>\n\n\n\n<p>Utilice la opci\u00f3n de confirmaci\u00f3n de PowerShell:<strong> -Confirm<\/strong><\/p>\n\n\n\n<p>De hecho, utilice estas opciones para gestionar y controlar mejor las copias de archivos y evitar sobrescribir archivos importantes y potencialmente no guardados. Este \u00faltimo ejemplo de <a href=\"https:\/\/docs.microsoft.com\/es-es\/windows-server\/administration\/windows-commands\/powershell\" target=\"_blank\" rel=\"noreferrer noopener\">script<\/a> PowerShell de copia indica al sistema que pida confirmaci\u00f3n antes de sobrescribir los archivos.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"powershell\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">Copy-Item -Path C:\\folder\\file.txt -Destination C:\\folder\\newfile.txt -Confirm<\/pre>\n\n\n\n<p>En conclusi\u00f3n, este primer art\u00edculo de la serie Scripting con Windows PowerShell muestra ejemplos de Scripting PS para copiar uno o m\u00e1s archivos en Windows. <\/p>\n\n\n\n<p>Para ir un paso m\u00e1s all\u00e1, aqu\u00ed se explica <strong><a href=\"https:\/\/expert-only.com\/es\/ms-dos\/copiar-un-archivo-a-otra-carpeta-en-cmd\/\">c\u00f3mo copiar archivos y carpetas con un script de cmd<\/a><\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-tutoriels-sql-et-it wp-block-embed-tutoriels-sql-et-it\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/expert-only.com\/es\/ms-dos\/copiar-un-archivo-a-otra-carpeta-en-cmd\/\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>\u00bfC\u00f3mo copiar un archivo a otra carpeta con el script de copia de Windows PowerShell? Hay varias opciones eficientes para copiar archivos de Windows desde el s\u00edmbolo del sistema PS. En la secuencia de comandos de PowerShell, utilice el <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\" title=\"Copiar archivos con PowerShell\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":5664,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[647],"tags":[419,416,413,415],"class_list":{"0":"post-9706","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-ps","8":"tag-archivo","9":"tag-carpeta","10":"tag-lote","11":"tag-script"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Copiar archivos con PowerShell - Powershell<\/title>\n<meta name=\"description\" content=\"Copiar archivos con un script de Windows PowerShell. Ejemplos de scripting Powershell con Copy-Item para gestionar las copias de archivos.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Copiar archivos con PowerShell\" \/>\n<meta property=\"og:description\" content=\"Copiar archivos con un script de Windows PowerShell. Ejemplos de scripting Powershell con Copy-Item para gestionar las copias de archivos.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutoriales de SQL y TI\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-15T05:25:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/es\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Copiar archivos con PowerShell\",\"datePublished\":\"2022-11-15T05:25:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\"},\"wordCount\":522,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/es\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg\",\"keywords\":[\"Archivo\",\"Carpeta\",\"Lote\",\"Script\"],\"articleSection\":[\"Powershell\"],\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\",\"url\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\",\"name\":\"Copiar archivos con PowerShell - Powershell\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/es\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg\",\"datePublished\":\"2022-11-15T05:25:00+00:00\",\"description\":\"Copiar archivos con un script de Windows PowerShell. Ejemplos de scripting Powershell con Copy-Item para gestionar las copias de archivos.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"es\",\"item\":\"https:\/\/expert-only.com\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Copiar archivos con PowerShell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/es\/#website\",\"url\":\"https:\/\/expert-only.com\/es\/\",\"name\":\"Tutoriales de SQL y TI\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/es\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/es\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/expert-only.com\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/es\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/es\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/expert-only.com\/es\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Copiar archivos con PowerShell - Powershell","description":"Copiar archivos con un script de Windows PowerShell. Ejemplos de scripting Powershell con Copy-Item para gestionar las copias de archivos.","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:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/","og_locale":"es_ES","og_type":"article","og_title":"Copiar archivos con PowerShell","og_description":"Copiar archivos con un script de Windows PowerShell. Ejemplos de scripting Powershell con Copy-Item para gestionar las copias de archivos.","og_url":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/","og_site_name":"Tutoriales de SQL y TI","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-11-15T05:25:00+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Escrito por":"Expert-Only","Tiempo de lectura":"3 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/es\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Copiar archivos con PowerShell","datePublished":"2022-11-15T05:25:00+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/"},"wordCount":522,"publisher":{"@id":"https:\/\/expert-only.com\/es\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg","keywords":["Archivo","Carpeta","Lote","Script"],"articleSection":["Powershell"],"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/","url":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/","name":"Copiar archivos con PowerShell - Powershell","isPartOf":{"@id":"https:\/\/expert-only.com\/es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg","datePublished":"2022-11-15T05:25:00+00:00","description":"Copiar archivos con un script de Windows PowerShell. Ejemplos de scripting Powershell con Copy-Item para gestionar las copias de archivos.","breadcrumb":{"@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/07\/inspiration_dark_pencils-CDFB9498B85_1920x1080.jpeg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/es\/ps\/copiar-archivos-con-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"es","item":"https:\/\/expert-only.com\/es\/"},{"@type":"ListItem","position":2,"name":"Copiar archivos con PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/es\/#website","url":"https:\/\/expert-only.com\/es\/","name":"Tutoriales de SQL y TI","description":"","publisher":{"@id":"https:\/\/expert-only.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/es\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/expert-only.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/es\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/expert-only.com\/es\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/posts\/9706","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/comments?post=9706"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/posts\/9706\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/media\/5664"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/media?parent=9706"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/categories?post=9706"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/es\/wp-json\/wp\/v2\/tags?post=9706"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}