{"id":132,"date":"2025-12-08T01:21:49","date_gmt":"2025-12-08T01:21:49","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=132"},"modified":"2026-08-14T22:33:49","modified_gmt":"2026-08-14T22:33:49","slug":"how-to-setup-multiple-connections-on-vps-remote-desktop-windows","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/","title":{"rendered":"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Windows Server limits concurrent interactive sessions to two by default \u2014 and one of those slots is reserved for the console session, so in practice you often get one usable RDP session. If you have ever logged in and immediately kicked yourself out of an existing session, or seen the &#8220;another user is connected&#8221; warning, you have hit this limit. The good news: you can raise it, but the right method depends on whether you want two sessions or twenty. This guide covers the licensing reality, the registry setting that controls the hard limit, and the proper Remote Desktop Services path for real multi-user workloads. Everything below assumes a server with a public IP, like the ones in <a href=\"https:\/\/windows-vps.org\/\">Windows VPS hosting plans<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why the limit exists<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Windows Server ships with a Remote Desktop &#8220;administrative mode&#8221; that allows up to two concurrent sessions at no extra license cost. That mode is intended for administrators managing the box, not for hosting multiple users. Once you need more than two simultaneous interactive sessions, you are running Remote Desktop Services (RDS), which legally requires RDS Client Access Licenses (CALs) per user or per device. Microsoft enforces this with a 120-day grace period \u2014 the server keeps working without a license server, but after day 120 it stops accepting new RDS connections until CALs are installed.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So the decision tree is simple:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Two admins max, no CALs:<\/strong> keep the default, just make sure both slots are usable.<\/li>\n<li><strong>More than two concurrent sessions:<\/strong> install the RDS role and add RDS CALs. Period.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Raise the hard limit to 2 (reclaim the console slot)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Many providers&#8217; images have the console session disabled, which makes the effective limit one. You can reclaim that slot via the RDP-Tcp listener properties in the registry:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>reg add \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\" \/v fDenyTSConnections \/t REG_DWORD \/d 0 \/f\nreg add \"HKLM\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp\" \/v MaxInstanceCount \/t REG_DWORD \/d 2 \/f<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then restart the service or reboot. This guarantees both administrative sessions are available to interactive users. Do not be tempted to raise <code>MaxInstanceCount<\/code> to 5 or 10 as a &#8220;workaround&#8221; \u2014 beyond two sessions you are in RDS territory legally, and the 120-day grace period will eventually lock out your users at the worst possible moment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The proper path: install Remote Desktop Services<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For a genuine multi-user workload \u2014 a team of developers sharing a build box, support staff working from a central desktop, a small office running line-of-business apps \u2014 install the RDS Session Host role:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Install-WindowsFeature RDS-RD-Server -IncludeManagementTools<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Then, from Server Manager \u2192 Remote Desktop Services \u2192 Overview, run the deployment wizard and add the RD Session Host. You will also need an RD Licensing server. The licensing role can run on the same box for a small deployment:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Install-WindowsFeature RDS-Licensing -IncludeManagementTools<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Activate the license server through Remote Desktop Licensing Manager (you need a Microsoft account and the server&#8217;s ID), install your CALs, and set the licensing mode to <strong>Per User<\/strong> or <strong>Per Device<\/strong> to match how you bought them. Per-device CALs are simpler to track in a small office; per-user CALs make sense when the same people roam between machines. Budget for this: RDS CALs cost roughly $180\u2013$250 each depending on volume licensing, and SQL Server or other server licenses are not affected by it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Control who gets in and how many sessions they may hold<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Add your users to the <strong>Remote Desktop Users<\/strong> local group. Then tighten the two policies that matter most, via <code>gpedit.msc<\/code> or the RDS collection properties:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Restrict Remote Desktop Services users to a single session<\/strong> (Computer Configuration \u2192 Administrative Templates \u2192 Windows Components \u2192 Remote Desktop Services \u2192 Remote Desktop Session Host \u2192 Connections). This stops one user from hogging multiple sessions and hitting the session limit for everyone else.<\/li>\n<li><strong>Set an idle session limit<\/strong> (Session Time Limits \u2192 Set time limit for active but idle Remote Desktop Services sessions \u2192 30\u201360 minutes). Idle sessions quietly consume RAM; on a 4 GB VPS, three idle sessions can eat 1.5 GB of nothing.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Right-size the server for concurrent users<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Sessions are not free. A baseline Windows Server session idles at roughly 300\u2013500 MB of RAM, and an RDS session running a browser or an office app typically needs 1\u20131.5 GB. As a planning rule:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Concurrent sessions<\/th><th>Minimum vCPU<\/th><th>Minimum RAM<\/th><\/tr><\/thead><tbody><tr><td>2 (admin mode)<\/td><td>2<\/td><td>4 GB<\/td><\/tr><tr><td>5<\/td><td>4<\/td><td>8 GB<\/td><\/tr><tr><td>10<\/td><td>8<\/td><td>16 GB<\/td><\/tr><tr><td>20+<\/td><td>16+<\/td><td>32 GB+<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Undersized RDS boxes fail in a characteristic way: the server stays responsive, but each session takes minutes to render a window. If that happens, check memory pressure first \u2014 <code>Get-Counter '\\Memory\\Available MBytes'<\/code> should show at least 1 GB free \u2014 before blaming the network.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Common mistakes to avoid<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Bumping MaxInstanceCount past 2 without CALs.<\/strong> Works for 120 days, then locks out all non-admin sessions.<\/li>\n<li><strong>Forgetting the firewall.<\/strong> RDS still uses TCP 3389; if you changed the RDP port earlier, the RDS listener uses the same value. Verify with <code>Get-NetFirewallRule -DisplayGroup \"Remote Desktop\"<\/code>.<\/li>\n<li><strong>Leaving Network Level Authentication disabled.<\/strong> NLA is what makes the login screen appear before a full session is created; disabling it increases the attack surface and can break the 2-session accounting.<\/li>\n<li><strong>Confusing console with session.<\/strong> The <code>mstsc \/console<\/code> flag is deprecated; on modern builds the console session counts against the same two-slot limit.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Verify your configuration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">After configuring, confirm the listener limit and the licensing mode:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>qwinsta\nGet-ItemProperty \"HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Terminal Server\\WinStations\\RDP-Tcp\" | Select MaxInstanceCount\nGet-CimInstance Win32_TSLicenseServer | Select LicensingMode<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Two admin sessions are fine for a single-operator VPS; anything beyond that is an RDS deployment and should be licensed and sized accordingly. If you are planning a multi-user setup, <a href=\"https:\/\/windows-vps.org\/\">our Windows VPS configurations<\/a> with 8 GB or more RAM are a reasonable starting point for five to ten concurrent users.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re looking to maximize the efficiency of your Virtual Private Server (VPS), knowing how to setup multiple connections on VPS remote desktop Windows is essential. This capability allows multiple users to connect to the same server simultaneously, making it ideal for collaborative work environments or for managing various applications. For more detailed information, check out\u00a0Windows VPS.<\/p>\n","protected":false},"author":1,"featured_media":133,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":14,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-132","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>Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way - Windows VPS Blog<\/title>\n<meta name=\"description\" content=\"If you&#039;re looking to maximize the efficiency of your Virtual Private Server (VPS), knowing how to setup multiple connections on VPS remote desktop Windows is essential. This capability allows multiple users to connect to the same server simultaneously, making it ideal for collaborative work environments or for managing various applications. For more detailed information, check out\u00a0Windows VPS.\" \/>\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-setup-multiple-connections-on-vps-remote-desktop-windows\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way\" \/>\n<meta property=\"og:description\" content=\"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-08T01:21:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-14T22:33:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.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=\"4 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-setup-multiple-connections-on-vps-remote-desktop-windows\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/\",\"name\":\"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg\",\"datePublished\":\"2025-12-08T01:21:49+00:00\",\"dateModified\":\"2026-08-14T22:33:49+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"description\":\"If you're looking to maximize the efficiency of your Virtual Private Server (VPS), knowing how to setup multiple connections on VPS remote desktop Windows is essential. This capability allows multiple users to connect to the same server simultaneously, making it ideal for collaborative work environments or for managing various applications. For more detailed information, check out\u00a0Windows VPS.\",\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#primaryimage\",\"url\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg\",\"contentUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg\",\"width\":640,\"height\":426},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way\"}]},{\"@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":"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way - Windows VPS Blog","description":"If you're looking to maximize the efficiency of your Virtual Private Server (VPS), knowing how to setup multiple connections on VPS remote desktop Windows is essential. This capability allows multiple users to connect to the same server simultaneously, making it ideal for collaborative work environments or for managing various applications. For more detailed information, check out\u00a0Windows VPS.","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-setup-multiple-connections-on-vps-remote-desktop-windows\/","og_locale":"en_US","og_type":"article","og_title":"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way","og_description":"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way","og_url":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/","og_site_name":"Windows VPS Blog","article_published_time":"2025-12-08T01:21:49+00:00","article_modified_time":"2026-08-14T22:33:49+00:00","og_image":[{"width":640,"height":426,"url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg","type":"image\/jpeg"}],"author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/","url":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/","name":"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#primaryimage"},"image":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg","datePublished":"2025-12-08T01:21:49+00:00","dateModified":"2026-08-14T22:33:49+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"description":"If you're looking to maximize the efficiency of your Virtual Private Server (VPS), knowing how to setup multiple connections on VPS remote desktop Windows is essential. This capability allows multiple users to connect to the same server simultaneously, making it ideal for collaborative work environments or for managing various applications. For more detailed information, check out\u00a0Windows VPS.","breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#primaryimage","url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg","contentUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/227779.jpg","width":640,"height":426},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/how-to-setup-multiple-connections-on-vps-remote-desktop-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Multiple RDP Sessions on Windows Server: Raise the Connection Limit the Right Way"}]},{"@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\/132","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=132"}],"version-history":[{"count":2,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/132\/revisions"}],"predecessor-version":[{"id":622,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/132\/revisions\/622"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media\/133"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=132"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=132"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=132"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}