{"id":44,"date":"2025-10-10T04:59:27","date_gmt":"2025-10-10T04:59:27","guid":{"rendered":"https:\/\/askyourpc.com\/?post_type=docs&#038;p=44"},"modified":"2025-10-10T04:59:27","modified_gmt":"2025-10-10T04:59:27","password":"","slug":"laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause","status":"publish","type":"docs","link":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/","title":{"rendered":"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Overview<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your laptop suddenly powers off without warning, it can point to problems with heat, power supply, firmware, or even internal protection circuits.<br>Unexpected shutdowns are frustrating because they often seem random, but the causes can be identified through careful observation and diagnostic commands.<br>This guide explains how to trace the shutdown source step-by-step and prevent future occurrences.<\/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 distinguish between heat-related and power-related shutdowns<\/li>\n\n\n\n<li>How to use system logs to identify exact shutdown causes<\/li>\n\n\n\n<li>How to verify fan and temperature readings<\/li>\n\n\n\n<li>How to reset power management and firmware safely<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Estimated time:<\/strong> 20\u201330 minutes<br><strong>Skill level:<\/strong> 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>Power cycle<\/td><td>Full discharge and restart sequence that clears electrical faults<\/td><\/tr><tr><td>Overtemperature protection<\/td><td>Hardware safeguard that forces shutdown when the CPU or GPU overheats<\/td><\/tr><tr><td>Sleep vs Hibernate<\/td><td>Sleep keeps power to RAM; Hibernate saves memory to disk and powers off<\/td><\/tr><tr><td>PSU (Power Supply Unit)<\/td><td>Component that delivers electrical power inside a laptop or desktop<\/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 Identify the Type of Shutdown<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Observe what happens before power loss:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Does the laptop get hot first? \u2192 Possible overheating.<\/li>\n\n\n\n<li>Does it shut off even when cool or idle? \u2192 Possible power or firmware fault.<\/li>\n\n\n\n<li>Does it restart immediately afterward? \u2192 Power management or battery issue.<\/li>\n\n\n\n<li>Does it only happen on battery or AC? \u2192 Helps isolate between adapter and internal battery.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Record these patterns\u2014they\u2019re essential for diagnosis.<\/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 Check Event and Error Logs<\/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-WinEvent -LogName System | Where-Object {$_.Message -like \"*shutdown*\"} | Select-Object TimeCreated, Message -First 15\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Look for messages such as \u201cThermal event,\u201d \u201cKernel-Power (Event ID 41),\u201d or \u201cPower button pressed.\u201d<\/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>log show --predicate 'eventMessage CONTAINS \"Previous shutdown cause\"' --last 24h\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Common causes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-60<\/code> or similar \u2192 Thermal shutdown<\/li>\n\n\n\n<li><code>-5<\/code> \u2192 Power loss<\/li>\n\n\n\n<li><code>-128<\/code> \u2192 Forced by user<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">This identifies whether the system shut down due to heat or a sudden power loss.<\/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 Monitor Temperatures and Fan Speeds<\/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-WmiObject MSAcpi_ThermalZoneTemperature | Select-Object CurrentTemperature\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Divide by 10 and subtract 273 to convert to Celsius.<\/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>sudo powermetrics --samplers smc | grep \"CPU die temperature\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If temperatures exceed 85\u00b0C before shutdown, overheating is the cause.<br>Listen for fan activity\u2014silent fans may indicate mechanical failure or a disconnected fan header.<\/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 Test Power Supply and Battery<\/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-WmiObject -Namespace root\\wmi -Class BatteryStatus | Select PowerOnline, Charging, Discharging\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Verifies whether the system detects stable power input.<\/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 SPPowerDataType | grep -E \"Cycle Count|Condition|Amperage\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If the amperage fluctuates heavily or condition shows \u201cReplace Soon,\u201d the battery may not sustain voltage.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Try these quick isolations:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Run only on AC (remove battery if possible).<\/li>\n\n\n\n<li>Run only on battery (unplug AC).<br>If the problem occurs in only one mode, you\u2019ve isolated the source.<\/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 5 \u2014 Reset Power Management Firmware<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows (Embedded Controller reset)<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Shut down the laptop.<\/li>\n\n\n\n<li>Unplug charger and battery if removable.<\/li>\n\n\n\n<li>Hold Power for 15 seconds.<\/li>\n\n\n\n<li>Reconnect power and start again.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS (SMC reset)<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Shut down.<\/li>\n\n\n\n<li>Hold <strong>Shift + Control + Option + Power<\/strong> for 10 seconds.<\/li>\n\n\n\n<li>Release and turn on.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Firmware resets clear corrupted states that may cause spontaneous power-offs.<\/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 Check Sleep and Hibernate Settings<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Sometimes misconfigured sleep timers cause laptops to appear as if they\u2019re shutting down.<\/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 \/a\npowercfg \/q | findstr \"Hibernate\"\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Confirms available and active sleep modes.<br>To disable hibernate temporarily:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>powercfg -h off\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>pmset -g\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Look for settings like <code>sleep<\/code> o <code>hibernatemode<\/code>.<br>If these trigger prematurely, adjust them with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo pmset -a sleep 0\nsudo pmset -a displaysleep 10\n<\/code><\/pre>\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 Memory and Storage Stability<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Windows<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mdsched.exe\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Launches Windows Memory Diagnostic on reboot.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>macOS<\/strong><br>Run Apple Diagnostics by restarting and holding <strong>D<\/strong>.<br>If either test reports hardware errors, unstable RAM or failing storage could cause sudden power loss.<\/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 Inspect Ventilation and Thermal Paste<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If shutdowns occur under load but not idle:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Clean vents with compressed air.<\/li>\n\n\n\n<li>Verify fans spin freely.<\/li>\n\n\n\n<li>Replace thermal paste between CPU\/GPU and heat sink if the system is over three years old.<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Proper thermal transfer prevents shutdowns triggered by heat spikes.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Step 9 \u2014 BIOS and Firmware Updates<\/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-WmiObject Win32_BIOS | Select SMBIOSBIOSVersion, ReleaseDate\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Check your manufacturer\u2019s support page for newer BIOS or EC updates that address thermal and power issues.<\/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\">Ensure your macOS and SMC firmware are current.<\/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<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Check<\/th><th>Command<\/th><th>Expected Result<\/th><\/tr><\/thead><tbody><tr><td>Temperature<\/td><td><code>powermetrics<\/code> o <code>MSAcpi_ThermalZoneTemperature<\/code><\/td><td>Under 75\u00b0C at idle<\/td><\/tr><tr><td>Power stability<\/td><td><code>BatteryStatus<\/code> o <code>system_profiler<\/code><\/td><td>Steady voltage and charge<\/td><\/tr><tr><td>Logs<\/td><td><code>Get-WinEvent<\/code> \/ <code>log show<\/code><\/td><td>No new unexpected shutdowns<\/td><\/tr><tr><td>Fan behavior<\/td><td>Observation<\/td><td>Operates quietly and ramps down when idle<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Monitor for at least one full day of normal operation before concluding the issue is resolved.<\/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\">Unexpected laptop shutdowns are typically caused by heat, unstable power, or firmware confusion.<br>By analyzing logs, testing temperature and power stability, and resetting control firmware, you can isolate the problem without replacing components prematurely.<br>If shutdowns persist after clean power and firmware resets, the issue may lie with the internal voltage regulator or motherboard, and professional service is recommended.<\/p>","protected":false},"excerpt":{"rendered":"<p>Overview If your laptop suddenly powers off without warning, it can point to problems with heat, power supply, firmware, or even internal protection circuits.Unexpected shutdowns are frustrating because they often seem random, but the causes can be identified through careful observation and diagnostic commands.This guide explains how to trace the shutdown source step-by-step and prevent [&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-44","docs","type-docs","status-publish","hentry","doc_category-hardware-fixes"],"blocksy_meta":[],"year_month":"2026-08","word_count":792,"total_views":"8","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>Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause - 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:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause - Ask Your PC\" \/>\n<meta property=\"og:description\" content=\"Overview If your laptop suddenly powers off without warning, it can point to problems with heat, power supply, firmware, or even internal protection circuits.Unexpected shutdowns are frustrating because they often seem random, but the causes can be identified through careful observation and diagnostic commands.This guide explains how to trace the shutdown source step-by-step and prevent [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/\" \/>\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:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\\\/\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\\\/\",\"name\":\"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause - Ask Your PC\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#website\"},\"datePublished\":\"2025-10-10T04:59:27+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/docs\\\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Docs\",\"item\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#website\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/\",\"name\":\"Ask Your PC\",\"description\":\"Helpful Computer Tutorials\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#organization\",\"name\":\"Ask Your PC\",\"url\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/www.askyourpc.com\\\/es\\\/#\\\/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:\\\/\\\/www.askyourpc.com\\\/es\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause - 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:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/","og_locale":"es_ES","og_type":"article","og_title":"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause - Ask Your PC","og_description":"Overview If your laptop suddenly powers off without warning, it can point to problems with heat, power supply, firmware, or even internal protection circuits.Unexpected shutdowns are frustrating because they often seem random, but the causes can be identified through careful observation and diagnostic commands.This guide explains how to trace the shutdown source step-by-step and prevent [&hellip;]","og_url":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/","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:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/","url":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/","name":"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause - Ask Your PC","isPartOf":{"@id":"https:\/\/www.askyourpc.com\/es\/#website"},"datePublished":"2025-10-10T04:59:27+00:00","breadcrumb":{"@id":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.askyourpc.com\/es\/docs\/laptop-shuts-down-randomly-how-to-find-and-fix-the-root-cause\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.askyourpc.com\/es\/"},{"@type":"ListItem","position":2,"name":"Docs","item":"https:\/\/www.askyourpc.com\/es\/tutorials\/"},{"@type":"ListItem","position":3,"name":"Laptop Shuts Down Randomly \u2014 How to Find and Fix the Root Cause"}]},{"@type":"WebSite","@id":"https:\/\/www.askyourpc.com\/es\/#website","url":"https:\/\/www.askyourpc.com\/es\/","name":"Ask Your PC","description":"Helpful Computer Tutorials","publisher":{"@id":"https:\/\/www.askyourpc.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.askyourpc.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.askyourpc.com\/es\/#organization","name":"Ask Your PC","url":"https:\/\/www.askyourpc.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.askyourpc.com\/es\/#\/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:\/\/www.askyourpc.com\/es\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/44","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=44"}],"version-history":[{"count":1,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/44\/revisions"}],"predecessor-version":[{"id":45,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/docs\/44\/revisions\/45"}],"wp:attachment":[{"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/media?parent=44"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_category?post=44"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.askyourpc.com\/es\/wp-json\/wp\/v2\/doc_tag?post=44"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}