{"id":27,"date":"2025-10-10T04:46:31","date_gmt":"2025-10-10T04:46:31","guid":{"rendered":"https:\/\/askyourpc.com\/?post_type=docs&#038;p=27"},"modified":"2025-10-10T04:46:31","modified_gmt":"2025-10-10T04:46:31","password":"","slug":"usb-device-not-recognized-how-to-fix-port-and-driver-issues","status":"publish","type":"docs","link":"https:\/\/www.askyourpc.com\/es\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/","title":{"rendered":"Dispositivo USB no reconocido: c\u00f3mo solucionar problemas del puerto y del controlador"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When you plug in a USB drive, keyboard, or camera and see the message \u201cUSB device not recognized,\u201d it usually means there is a communication problem between your computer and the device.<br>The cause can be a faulty cable, an unresponsive USB controller, or outdated drivers. This guide walks you through a set of safe, proven steps to get your USB ports working again.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>What you\u2019ll learn<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>How to verify power delivery to USB ports<\/li>\n\n\n\n<li>How to reset or reinstall USB controllers<\/li>\n\n\n\n<li>How to check for device or cable faults<\/li>\n\n\n\n<li>How to test system-level power and driver settings<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Estimated time:<\/strong> 10\u201315 minutes<br><strong>Skill level:<\/strong> Beginner to Intermediate<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Terms and Definitions<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Term<\/th><th>Meaning<\/th><\/tr><\/thead><tbody><tr><td>USB Controller<\/td><td>Hardware that manages all USB connections in your computer<\/td><\/tr><tr><td>Driver<\/td><td>Software that allows your operating system to communicate with hardware<\/td><\/tr><tr><td>Power Surge<\/td><td>A temporary overcurrent that shuts down a USB port to prevent damage<\/td><\/tr><tr><td>Hub<\/td><td>A device that expands one USB port into several additional ports<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Steps<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1 \u2014 Check the Physical Connection<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Begin with a simple hardware check.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Unplug and reconnect the device securely.<\/li>\n\n\n\n<li>Try a different USB port, ideally on the opposite side of your laptop or a rear port on a desktop.<\/li>\n\n\n\n<li>Avoid using hubs or adapters for now; connect the device directly to the computer.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If the device suddenly works, the issue lies in the hub or port you were using.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2 \u2014 Power Cycle the Computer<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Rebooting clears temporary power faults in USB controllers.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Unplug all USB devices.<\/li>\n\n\n\n<li>Shut down the computer completely.<\/li>\n\n\n\n<li>Disconnect the power cord (and battery if removable).<\/li>\n\n\n\n<li>Wait 30 seconds, then reconnect power and start the system.<\/li>\n\n\n\n<li>Plug in the USB device again and test.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If it now appears, the controller reset itself successfully.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3 \u2014 Check USB Power States<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PnpDevice -Class USB | Select-Object FriendlyName, Status\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Displays a list of connected USB devices and whether each is active or disabled.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS Terminal<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>system_profiler SPUSBDataType\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows all connected USB devices, their manufacturers, and power draw.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If a device shows \u201cStatus: Disabled\u201d or \u201cCurrent Required\u201d greater than \u201cCurrent Available,\u201d the system has turned off that port to protect hardware.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4 \u2014 Reset the USB Controller<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>Device Manager<\/strong>.<\/li>\n\n\n\n<li>Expand <strong>Universal Serial Bus Controllers<\/strong>.<\/li>\n\n\n\n<li>Right-click each entry labeled \u201cUSB Root Hub\u201d or \u201cGeneric USB Hub\u201d and select <strong>Uninstall device<\/strong>.<\/li>\n\n\n\n<li>Restart the computer; Windows will reinstall them automatically.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>PowerShell Alternative<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PnpDevice -Class USB | Disable-PnpDevice -Confirm:$false\nGet-PnpDevice -Class USB | Enable-PnpDevice -Confirm:$false\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Disables and re-enables all USB devices to refresh the controller.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo kextunload \/System\/Library\/Extensions\/IOUSBHostFamily.kext\nsudo kextload \/System\/Library\/Extensions\/IOUSBHostFamily.kext\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Restarts the macOS USB subsystem. This requires administrator privileges.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5 \u2014 Update USB Drivers<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-WindowsDriver -Online | Where-Object {$_.Driver -like \"*USB*\"}\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Lists current USB drivers.<br>If any are outdated, right-click in Device Manager and choose <strong>Update driver<\/strong>, or download the latest version from your computer manufacturer\u2019s support site.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>softwareupdate -l\nsoftwareupdate -i -a\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">macOS updates its USB drivers through system updates. Install all available updates to ensure compatibility.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6 \u2014 Adjust Power Management Settings<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Windows sometimes disables ports to conserve power.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>powercfg -devicequery wake_from_any\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Shows which devices can wake the computer. If your USB device is missing, the port may be powered down.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To fix this:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>Device Manager \u2192 USB Root Hub \u2192 Properties \u2192 Power Management<\/strong>.<\/li>\n\n\n\n<li>Clear the checkbox labeled \u201cAllow the computer to turn off this device to save power.\u201d<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7 \u2014 Test the Cable or Device<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To confirm whether the problem is with the port or the device:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect another USB device to the same port.<\/li>\n\n\n\n<li>Try the problem device on a different computer.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If another computer recognizes it, the fault is local to your system.<br>If no computer recognizes it, the device or cable is defective.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8 \u2014 Check Event Logs for USB Errors<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows PowerShell<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-EventLog -LogName System -Newest 20 | Where-Object {$_.Message -like \"*USB*\"} | Format-Table TimeGenerated, Message -AutoSize\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Lists the last twenty USB-related system events.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>log show --predicate 'subsystem == \"com.apple.usb\" &amp;&amp; eventMessage CONTAINS \"error\"' --last 1h\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Displays USB-related errors recorded in the last hour.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Review these logs to determine if there are recurring connection or power issues.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Verification<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">After completing the steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Reconnect the USB device.<\/li>\n\n\n\n<li>Confirm that it appears in <strong>File Explorer<\/strong> (Windows) or <strong>Finder<\/strong> (macOS).<\/li>\n\n\n\n<li>Check that Device Manager or <code>system_profiler<\/code> lists the device as active.<\/li>\n\n\n\n<li>Confirm that there are no yellow warning icons or repeated error logs.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">If all checks pass, your USB ports and drivers are functioning correctly.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You have systematically reset the USB subsystem, verified drivers, and tested both hardware and power settings.<br>Most recognition errors stem from either a power management feature disabling the port or a driver failure.<br>If the problem reappears even after these steps, it likely indicates a failing USB controller or damaged port that may need professional repair.<br>By following this guide, you\u2019ve eliminated all common software causes and confirmed whether the issue is electrical or physical.<\/p>","protected":false},"excerpt":{"rendered":"<p>Overview When you plug in a USB drive, keyboard, or camera and see the message \u201cUSB device not recognized,\u201d it usually means there is a communication problem between your computer and the device.The cause can be a faulty cable, an unresponsive USB controller, or outdated drivers. This guide walks you through a set of safe, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"doc_category":[12],"doc_tag":[],"class_list":["post-27","docs","type-docs","status-publish","hentry","doc_category-hardware-fixes"],"blocksy_meta":[],"year_month":"2026-08","word_count":805,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"user","author_nicename":"user","author_url":"https:\/\/www.askyourpc.com\/es\/author\/user\/"},"doc_category_info":[{"term_name":"Hardware Fixes","term_url":"https:\/\/www.askyourpc.com\/es\/docs-category\/hardware-fixes\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>USB Device Not Recognized \u2014 How to Fix Port and Driver Issues - Ask Your PC<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues - Ask Your PC\" \/>\n<meta property=\"og:description\" content=\"Overview When you plug in a USB drive, keyboard, or camera and see the message \u201cUSB device not recognized,\u201d it usually means there is a communication problem between your computer and the device.The cause can be a faulty cable, an unresponsive USB controller, or outdated drivers. This guide walks you through a set of safe, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/\" \/>\n<meta property=\"og:site_name\" content=\"Ask Your PC\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\\\/\",\"url\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\\\/\",\"name\":\"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues - Ask Your PC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#website\"},\"datePublished\":\"2025-10-10T04:46:31+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/askyourpc.com\\\/docs\\\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/askyourpc.com\\\/docs\\\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/askyourpc.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docs\",\"item\":\"https:\\\/\\\/www.askyourpc.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#website\",\"url\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/\",\"name\":\"Ask Your PC\",\"description\":\"Helpful Computer Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#organization\",\"name\":\"Ask Your PC\",\"url\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/askyourpc-logo-mark.png\",\"contentUrl\":\"https:\\\/\\\/www.askyourpc.com\\\/wp-content\\\/uploads\\\/2026\\\/08\\\/askyourpc-logo-mark.png\",\"width\":512,\"height\":512,\"caption\":\"Ask Your PC\"},\"image\":{\"@id\":\"https:\\\/\\\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues - Ask Your PC","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:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/","og_locale":"es_ES","og_type":"article","og_title":"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues - Ask Your PC","og_description":"Overview When you plug in a USB drive, keyboard, or camera and see the message \u201cUSB device not recognized,\u201d it usually means there is a communication problem between your computer and the device.The cause can be a faulty cable, an unresponsive USB controller, or outdated drivers. This guide walks you through a set of safe, [&hellip;]","og_url":"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/","og_site_name":"Ask Your PC","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/","url":"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/","name":"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues - Ask Your PC","isPartOf":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#website"},"datePublished":"2025-10-10T04:46:31+00:00","breadcrumb":{"@id":"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/askyourpc.com\/docs\/usb-device-not-recognized-how-to-fix-port-and-driver-issues\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/askyourpc.com\/"},{"@type":"ListItem","position":2,"name":"Docs","item":"https:\/\/www.askyourpc.com\/tutorials\/"},{"@type":"ListItem","position":3,"name":"USB Device Not Recognized \u2014 How to Fix Port and Driver Issues"}]},{"@type":"WebSite","@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#website","url":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/","name":"Ask Your PC","description":"Helpful Computer Tutorials","publisher":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#organization","name":"Ask Your PC","url":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#\/schema\/logo\/image\/","url":"https:\/\/www.askyourpc.com\/wp-content\/uploads\/2026\/08\/askyourpc-logo-mark.png","contentUrl":"https:\/\/www.askyourpc.com\/wp-content\/uploads\/2026\/08\/askyourpc-logo-mark.png","width":512,"height":512,"caption":"Ask Your PC"},"image":{"@id":"https:\/\/[2600:1f18:aa1:8e00:bf8f:f850:8210:dcb4]\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/27","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/comments?post=27"}],"version-history":[{"count":1,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/27\/revisions"}],"predecessor-version":[{"id":28,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/27\/revisions\/28"}],"wp:attachment":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/media?parent=27"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_category?post=27"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_tag?post=27"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}