{"id":450,"date":"2026-06-23T11:14:50","date_gmt":"2026-06-23T11:14:50","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=450"},"modified":"2026-06-29T02:51:54","modified_gmt":"2026-06-29T02:51:54","slug":"windows-server-2025-vps-setup-guide","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/","title":{"rendered":"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Windows Server 2025 is Microsoft&#8217;s latest server operating system, offering improved performance, enhanced security features, and better integration with cloud services. Running it on a VPS gives you a full Windows environment in the cloud without the upfront hardware cost. This guide walks you through the entire setup process \u2014 from initial RDP access to server hardening \u2014 combining both the configuration-wizard approach and the PowerShell automation methods you need for efficient administration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Initial RDP Access<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When your VPS provider provisions a Windows Server 2025 instance, they will send you the IP address and administrator credentials. Here is how to connect:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open <strong>Remote Desktop Connection<\/strong> (press Win + R, type <code>mstsc<\/code>)<\/li>\n<li>Enter the VPS IP address and click <strong>Connect<\/strong><\/li>\n<li>Click &#8220;More Options&#8221; \u2192 &#8220;Connection Settings&#8221; \u2192 save the RDP file for future use<\/li>\n<li>Log in with the provided Administrator username and password<\/li>\n<li>Accept the certificate warning (it is self-signed for first connection)<\/li>\n<li>You will see the Server Manager dashboard \u2014 this is your command center for all configuration tasks<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>First action:<\/strong> Change the Administrator password immediately. Use Computer Management > Local Users and Groups or run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>net user Administrator \"Your-Strong-P@ssword-2026!\"<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Server Manager Configuration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Server Manager opens automatically on first login. Use it to:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Configure local server settings:<\/strong> Enable or disable IE Enhanced Security Configuration, set time zone, configure Windows Update<\/li>\n<li><strong>Add roles and features:<\/strong> This is where you install IIS, .NET, and other server components<\/li>\n<li><strong>Manage storage:<\/strong> Check available disk space and create additional volumes if needed<\/li>\n<li><strong>View performance metrics:<\/strong> Monitor CPU, memory, and network usage from the Dashboard<\/li>\n<li><strong>Change the computer name:<\/strong> Give your server a meaningful hostname<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Rename the Server via PowerShell<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>Rename-Computer -NewName \"WS2025-PROD-01\" -Restart<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Adding Roles and Features (IIS + .NET)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">For most web hosting scenarios, you will need IIS (Internet Information Services) and the .NET runtime. You have two options: the Server Manager wizard or PowerShell.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Option A: Using Server Manager (GUI)<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>In <strong>Server Manager<\/strong>, click <strong>Manage > Add Roles and Features<\/strong><\/li>\n<li>Select <strong>Role-based or feature-based installation<\/strong> and choose your server<\/li>\n<li>Under <strong>Server Roles<\/strong>, check <strong>Web Server (IIS)<\/strong><\/li>\n<li>Under <strong>Features<\/strong>, check <strong>.NET Framework 4.8 Features<\/strong><\/li>\n<li>For IIS, add commonly needed role services:\n<ul class=\"wp-block-list\">\n<li><strong>Common HTTP Features:<\/strong> Default Document, Directory Browsing, HTTP Errors, Static Content<\/li>\n<li><strong>Health and Diagnostics:<\/strong> HTTP Logging, Request Monitor<\/li>\n<li><strong>Performance:<\/strong> Static Content Compression, Dynamic Content Compression<\/li>\n<li><strong>Security:<\/strong> Windows Authentication, URL Authorization, Request Filtering<\/li>\n<li><strong>Application Development:<\/strong> ASP.NET 4.8, ISAPI Extensions, ISAPI Filters<\/li>\n<\/ul>\n<\/li>\n<li>Click <strong>Install<\/strong> and wait for the process to complete<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Option B: Using PowerShell (Faster, Repeatable)<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># Install IIS with management tools\nInstall-WindowsFeature -Name Web-Server -IncludeManagementTools\n\n# Install .NET Framework 4.8\nInstall-WindowsFeature -Name NET-Framework-45-Features\n\n# Install .NET 8\/9\/10 Runtime\nInvoke-WebRequest -Uri \"https:\/\/dot.net\/v1\/dotnet-install.ps1\" -OutFile dotnet-install.ps1\n.\\dotnet-install.ps1 -Channel 10.0 -Runtime aspnetcore\n\n# Install other common roles\nInstall-WindowsFeature -Name DNS -IncludeManagementTools\nInstall-WindowsFeature -Name FS-FileServer<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To verify IIS is working, open a browser on your VPS and navigate to <code>http:\/\/localhost<\/code>. You should see the default IIS welcome page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Configuring Windows Update<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A freshly installed Windows Server 2025 will need updates. Configure update settings for a production server:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to <strong>Settings > Windows Update<\/strong><\/li>\n<li>Click <strong>Check for updates<\/strong> and install all available updates<\/li>\n<li>Set <strong>Advanced Options > Active Hours<\/strong> to avoid reboots during business hours<\/li>\n<li>For production servers, consider using Group Policy to schedule a maintenance window<\/li>\n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Alternatively, configure updates via PowerShell:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Set to download and install automatically at 2 AM\nSet-ItemProperty -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsUpdate\\Auto Update\" -Name \"AUOptions\" -Value 4\n\n# Check for and install updates\nInstall-Module PSWindowsUpdate -Force\nGet-WindowsUpdate -Install -AcceptAll -AutoReboot<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5: Windows Firewall Configuration<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Windows Defender Firewall with Advanced Security is enabled by default on Server 2025. Open only the ports your services need:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Service<\/th><th>Default Port<\/th><th>Firewall Rule<\/th><\/tr><\/thead><tbody><tr><td>RDP<\/td><td>3389 (TCP)<\/td><td>Pre-enabled (inbound)<\/td><\/tr><tr><td>HTTP<\/td><td>80 (TCP)<\/td><td>Add inbound rule for web traffic<\/td><\/tr><tr><td>HTTPS<\/td><td>443 (TCP)<\/td><td>Add inbound rule for secure web traffic<\/td><\/tr><tr><td>FTP<\/td><td>21 (TCP)<\/td><td>Add inbound rule (if using FTP)<\/td><\/tr><tr><td>SQL Server<\/td><td>1433 (TCP)<\/td><td>Add inbound rule (if running SQL)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">To add rules via PowerShell:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Allow HTTP and HTTPS\nNew-NetFirewallRule -DisplayName \"HTTP (80)\" -Direction Inbound -Protocol TCP -LocalPort 80 -Action Allow\nNew-NetFirewallRule -DisplayName \"HTTPS (443)\" -Direction Inbound -Protocol TCP -LocalPort 443 -Action Allow\n\n# Allow SQL Server if needed\nNew-NetFirewallRule -DisplayName \"SQL Server\" -Direction Inbound -Protocol TCP -LocalPort 1433 -Action Allow\n\n# Block everything else by default\nSet-NetFirewallProfile -Profile Domain,Public,Private -DefaultInboundAction Block<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To add a rule via the GUI: Open <strong>Windows Defender Firewall > Advanced Settings > Inbound Rules > New Rule<\/strong>. Select <strong>Port<\/strong>, specify the port number, choose <strong>Allow the connection<\/strong>, and apply it to Domain, Private, and Public profiles.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6: Security Hardening<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">A freshly provisioned server needs hardening before it goes into production. Apply these essential security measures:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Change default Administrator password<\/strong> immediately and use a password manager for randomized passwords of 20+ characters<\/li>\n<li><strong>Enable RDP Network Level Authentication (NLA):<\/strong> System Properties > Remote > &#8220;Allow connections only from computers running Remote Desktop with NLA&#8221;<\/li>\n<li><strong>Set account lockout policy:<\/strong> 5 invalid attempts \u2192 15-minute lockout via secpol.msc > Account Policies > Account Lockout Policy<\/li>\n<li><strong>Enable audit logging:<\/strong> <code>auditpol \/set \/subcategory:\"Logon\" \/success:enable \/failure:enable<\/code><\/li>\n<li><strong>Install Windows Defender Antivirus:<\/strong> Ensure real-time protection is active via <code>Set-MpPreference -DisableRealtimeMonitoring $false<\/code><\/li>\n<li><strong>Enable auditing:<\/strong> Configure Advanced Audit Policy in Local Security Policy to track logon events, object access, and policy changes<\/li>\n<li><strong>Create a non-admin user:<\/strong> Use a standard user account for daily administration tasks and elevate only when needed<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7: Post-Setup Best Practices<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set up backup:<\/strong> Use Windows Server Backup or a third-party tool to schedule regular backups. Configure provider-level snapshots if available.<\/li>\n<li><strong>Install monitoring tools:<\/strong> Performance Monitor, Resource Monitor, and optionally third-party tools like Zabbix or PRTG for proactive alerting.<\/li>\n<li><strong>Configure automatic reboots:<\/strong> Schedule a weekly maintenance window via Task Scheduler to apply updates and restart if needed.<\/li>\n<li><strong>Enable RDP UDP transport:<\/strong> RDP performs better over UDP than TCP on high-latency connections. Ensure UDP 3389 is open in the firewall.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Setting up Windows Server 2025 on a VPS is a smooth process when you follow the right steps. Start with RDP access and password changes, configure Server Manager, add IIS and .NET for web hosting, lock down Windows Update, fine-tune the firewall, and apply security hardening measures. Whether you prefer the Server Manager GUI for visual configuration or PowerShell for repeatable automation, a properly configured Windows Server 2025 VPS provides a rock-solid foundation for hosting applications, websites, and services. <a href=\"https:\/\/windows-vps.org\/#providers\">Compare Windows VPS plans on our comparison table<\/a> to find providers that offer Windows Server 2025 with pre-configured templates.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Windows Server 2025 is Microsoft&#8217;s latest server operating system, offering improved performance, enhanced security features, and better integration with cloud services. Running it on a VPS gives you a full Windows environment in the cloud without the upfront hardware cost. This guide walks you through the entire setup process \u2014 from initial RDP access to &#8230; <a title=\"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps\" class=\"read-more\" href=\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/\" aria-label=\"Read more about How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":1,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-450","post","type-post","status-publish","format-standard","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>How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps - Windows VPS Blog<\/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:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps\" \/>\n<meta property=\"og:description\" content=\"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-23T11:14:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-29T02:51:54+00:00\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/\",\"name\":\"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"datePublished\":\"2026-06-23T11:14:50+00:00\",\"dateModified\":\"2026-06-29T02:51:54+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps\"}]},{\"@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":"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps - Windows VPS Blog","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\/windows-server-2025-vps-setup-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps","og_description":"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps","og_url":"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/","og_site_name":"Windows VPS Blog","article_published_time":"2026-06-23T11:14:50+00:00","article_modified_time":"2026-06-29T02:51:54+00:00","author":"windows-vps","twitter_card":"summary_large_image","twitter_misc":{"Written by":"windows-vps","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/","url":"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/","name":"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"datePublished":"2026-06-23T11:14:50+00:00","dateModified":"2026-06-29T02:51:54+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/windows-server-2025-vps-setup-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Set Up Windows Server 2025 on a VPS: Installation, Configuration, and First Steps"}]},{"@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\/450","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=450"}],"version-history":[{"count":2,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/450\/revisions"}],"predecessor-version":[{"id":475,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/450\/revisions\/475"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=450"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=450"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=450"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}