{"id":147,"date":"2025-12-12T02:45:21","date_gmt":"2025-12-12T02:45:21","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=147"},"modified":"2026-08-05T22:27:18","modified_gmt":"2026-08-05T22:27:18","slug":"how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/","title":{"rendered":"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">A Windows VPS that crashes at 3 a.m. and stays down costs you the whole night of uptime you are paying for. Windows Server ships with sensible defaults \u2014 automatic restart on system failure is enabled out of the box \u2014 but the defaults do not cover the cases that actually bite VPS owners: a service that dies and stays dead, a boot that lands on a repair screen, or a crash that writes no debugging information at all. This guide covers the Startup and Recovery settings that decide whether your server comes back by itself or waits for you to open a support ticket.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">None of this requires third-party tools; everything lives in System Properties, the registry, and a few built-in commands. The payoff is a server that reboots, restarts its services, and tells you what broke, all without human intervention. If you are shopping for a host with a reliable power and network backbone behind these settings, <a href=\"https:\/\/windows-vps.org\/#providers\">our comparison table<\/a> lists Windows VPS providers side by side, including the uptime guarantees and hardware specs that make automatic recovery actually useful.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Windows Server Does by Default After a Crash<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Automatic restart<\/strong> is enabled \u2014 a bugcheck (BSOD) triggers a reboot instead of a frozen console.<\/li><li><strong>Write debugging information<\/strong> is set to Automatic memory dump \u2014 a kernel dump lands in <code>C:\\Windows\\Minidump<\/code> (small dumps) or <code>C:\\Windows\\MEMORY.DMP<\/code> (full dumps).<\/li><li><strong>Event Log entries<\/strong> are recorded: Event ID 41 (Kernel-Power, unexpected shutdown), 6008 (unexpected shutdown), and 1001 (bugcheck details).<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">What the defaults do <em>not<\/em> do is restart your application services. IIS starts with the OS, but a custom service, a database, or a queue worker that crashed five minutes after boot stays down until someone starts it. That is the gap the recovery settings below close.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Startup and Recovery Settings Worth Changing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Open <strong>System Properties \u2192 Advanced \u2192 Startup and Recovery \u2192 Settings<\/strong> on a GUI install, or set the values directly in the registry under <code>HKLM\\SYSTEM\\CurrentControlSet\\Control\\CrashControl<\/code>:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>AutoReboot<\/strong> \u2014 keep it at <code>1<\/code>. Setting it to <code>0<\/code> leaves the server stuck on a blue screen until a manual reboot.<\/li><li><strong>CrashDumpEnabled<\/strong> \u2014 <code>7<\/code> (automatic dump) is a good default; <code>1<\/code> (full dump) writes more data but needs free space roughly equal to RAM, which is scarce on small VPS plans.<\/li><li><strong>Minidumps<\/strong> \u2014 ensure <code>MinidumpDir<\/code> points to a folder with a few hundred MB free.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>reg add \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\CrashControl\" \/v AutoReboot \/t REG_DWORD \/d 1 \/f\nreg add \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\CrashControl\" \/v CrashDumpEnabled \/t REG_DWORD \/d 7 \/f<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">If a crash dump cannot be written because the system drive is full, Windows logs the failure and skips the dump. Keep at least 1 GB free on the system volume as a buffer, and remember that a full memory dump on a 16 GB VPS needs roughly 16 GB of free space.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Making Services Restart Themselves<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Every Windows service has a recovery policy that is ignored unless you configure it. Set it from an elevated PowerShell prompt with <code>sc.exe<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sc failure \"MyAppService\" reset= 86400 actions= restart\/5000\/restart\/10000\/restart\/30000\nsc failureflag \"MyAppService\" 1<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">This restarts the service 5 seconds after the first failure, 10 seconds after the second, and 30 seconds after the third, then resets the failure counter after 24 hours. The <code>failureflag<\/code> command sets the service to signal the system it failed, which matters for cluster and monitoring integrations. Apply the same policy to SQL Server, your web app&#8217;s Windows service, and any queue consumers. For services that legitimately crash in a loop, add a <code>restart\/60000<\/code> final action instead of <code>restart\/30000<\/code> so a broken binary does not cause a rapid restart cycle that spikes CPU.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Verifying Boot Health After a Crash<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When the server comes back, confirm it booted into the right OS and find out what killed it. Check the boot entry and its status with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>bcdedit \/enum {current}\nwevtutil qe System \"\/q:*[System[(EventID=41 or EventID=6008 or EventID=1001)]]\" \/c:10 \/rd:true \/f:text<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Event ID 41 means the system rebooted without a clean shutdown \u2014 expected after a bugcheck or a provider-enforced reboot. Event ID 1001 with a bugcheck code such as <code>0x0000007E<\/code> names the failing module. If the server lands on Automatic Repair instead of booting to the desktop, boot into Safe Mode, disable recently installed drivers or the offending service, and run <code>sfc \/scannow<\/code> to repair system files. On a VPS, the provider&#8217;s console (out-of-band KVM or noVNC) is the only way to see a pre-boot screen, so keep the credentials for that console somewhere safe \u2014 it is your recovery tool when RDP is unavailable.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">With automatic restart enabled, recovery actions set on your services, and a known way to read crash events, most Windows VPS failures resolve themselves within a minute. The remaining variable is the host: a provider with weak hardware or poor network reliability will crash more often, and no registry setting fixes that. <a href=\"https:\/\/windows-vps.org\/#providers\">Compare Windows VPS plans side by side<\/a> before you commit, and consider a host with a generous uptime SLA. For a low-cost starting point, <a href=\"https:\/\/interserver.net\/r\/1067805?url=interserver.net\/vps\/windows-vps.html\" rel=\"noreferrer noopener sponsored\" target=\"_blank\">InterServer&#8217;s Windows VPS plans<\/a> come with full administrative access so you can apply these recovery settings immediately \u2014 the <strong>TRYINTERSERVER<\/strong> promo code makes the first month $0.01 if you want to test crash behavior on a throwaway box.<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019ve been wondering\u00a0can bots run on Windows VPS, the short answer is yes \u2014 and it\u2019s actually easier than most people think. In fact, using a reliable provider such as\u00a0Windows VPS\u00a0can make the entire process smooth and secure. Whether you\u2019re automating tasks, managing social media accounts, handling trading scripts, or deploying custom services, a Windows VPS gives you the power of a personal computer that\u2019s available 24\/7 in the cloud.<\/p>\n","protected":false},"author":1,"featured_media":148,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":0,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-147","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials-guides"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair - Windows VPS Blog<\/title>\n<meta name=\"description\" content=\"If you\u2019ve been wondering\u00a0can bots run on Windows VPS, the short answer is yes \u2014 and it\u2019s actually easier than most people think. In fact, using a reliable provider such as\u00a0Windows VPS\u00a0can make the entire process smooth and secure. Whether you\u2019re automating tasks, managing social media accounts, handling trading scripts, or deploying custom services, a Windows VPS gives you the power of a personal computer that\u2019s available 24\/7 in the cloud.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair\" \/>\n<meta property=\"og:description\" content=\"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-12T02:45:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-05T22:27:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"426\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"windows-vps\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"windows-vps\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/\",\"name\":\"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg\",\"datePublished\":\"2025-12-12T02:45:21+00:00\",\"dateModified\":\"2026-08-05T22:27:18+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"description\":\"If you\u2019ve been wondering\u00a0can bots run on Windows VPS, the short answer is yes \u2014 and it\u2019s actually easier than most people think. In fact, using a reliable provider such as\u00a0Windows VPS\u00a0can make the entire process smooth and secure. Whether you\u2019re automating tasks, managing social media accounts, handling trading scripts, or deploying custom services, a Windows VPS gives you the power of a personal computer that\u2019s available 24\/7 in the cloud.\",\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#primaryimage\",\"url\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg\",\"contentUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg\",\"width\":640,\"height\":426},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\",\"url\":\"https:\/\/windows-vps.org\/blog\/\",\"name\":\"Windows VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/windows-vps.org\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\",\"name\":\"windows-vps\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g\",\"caption\":\"windows-vps\"},\"sameAs\":[\"https:\/\/windows-vps.org\/blog\"],\"url\":\"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair - Windows VPS Blog","description":"If you\u2019ve been wondering\u00a0can bots run on Windows VPS, the short answer is yes \u2014 and it\u2019s actually easier than most people think. In fact, using a reliable provider such as\u00a0Windows VPS\u00a0can make the entire process smooth and secure. Whether you\u2019re automating tasks, managing social media accounts, handling trading scripts, or deploying custom services, a Windows VPS gives you the power of a personal computer that\u2019s available 24\/7 in the cloud.","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:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair","og_description":"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair","og_url":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/","og_site_name":"Windows VPS Blog","article_published_time":"2025-12-12T02:45:21+00:00","article_modified_time":"2026-08-05T22:27:18+00:00","og_image":[{"width":640,"height":426,"url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg","type":"image\/jpeg"}],"author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/","url":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/","name":"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#primaryimage"},"image":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg","datePublished":"2025-12-12T02:45:21+00:00","dateModified":"2026-08-05T22:27:18+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"description":"If you\u2019ve been wondering\u00a0can bots run on Windows VPS, the short answer is yes \u2014 and it\u2019s actually easier than most people think. In fact, using a reliable provider such as\u00a0Windows VPS\u00a0can make the entire process smooth and secure. Whether you\u2019re automating tasks, managing social media accounts, handling trading scripts, or deploying custom services, a Windows VPS gives you the power of a personal computer that\u2019s available 24\/7 in the cloud.","breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#primaryimage","url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg","contentUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-1.jpg","width":640,"height":426},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/how-to-run-bots-on-a-windows-vps-a-complete-step-by-step-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Startup and Recovery Settings on a Windows VPS: Automatic Restart, Service Recovery, and Boot Repair"}]},{"@type":"WebSite","@id":"https:\/\/windows-vps.org\/blog\/#website","url":"https:\/\/windows-vps.org\/blog\/","name":"Windows VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/windows-vps.org\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58","name":"windows-vps","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3f2573db5afcd1a6ab9abcc5d48fc8e42584bc87ab9d98cc156e5b2097766dd9?s=96&d=mm&r=g","caption":"windows-vps"},"sameAs":["https:\/\/windows-vps.org\/blog"],"url":"https:\/\/windows-vps.org\/blog\/author\/myxiechengxuan\/"}]}},"_links":{"self":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/147","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/comments?post=147"}],"version-history":[{"count":3,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/147\/revisions"}],"predecessor-version":[{"id":549,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/147\/revisions\/549"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media\/148"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=147"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=147"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=147"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}