{"id":231,"date":"2025-12-30T02:00:05","date_gmt":"2025-12-30T02:00:05","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=231"},"modified":"2026-08-08T22:20:47","modified_gmt":"2026-08-08T22:20:47","slug":"how-to-add-another-profile-on-windows-10-on-vps-complete-guide","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/","title":{"rendered":"How to Add Users and Manage Profiles on a Windows VPS"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Giving someone access to your Windows VPS is not about creating a &#8220;profile&#8221; in the consumer sense \u2014 it is about creating a <strong>local user account<\/strong> and making sure that account can log in over Remote Desktop with the right permissions. This guide covers the PowerShell commands to create users, the groups that control what they can do, and what to do when a profile misbehaves (temp profiles and &#8220;user cannot connect&#8221; are the two classics). If you are comparing plans while you read, the <a href=\"https:\/\/windows-vps.org\/#providers\">Windows VPS provider comparison<\/a> shows how many users and sessions each plan realistically supports.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Local Users vs. Microsoft Accounts vs. Profiles<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Three terms get mixed up constantly, so let us separate them:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Local user account<\/strong> \u2014 the credential that lets someone sign in to the server (name + password stored on that machine). This is what you create on a VPS.<\/li>\n<li><strong>Microsoft account<\/strong> \u2014 an online identity (e.g. a personal @outlook.com login). Not needed on Windows Server and generally not supported for server logins.<\/li>\n<li><strong>User profile<\/strong> \u2014 the folder (<code>C:\\Users\\Username<\/code>) and registry hive (<code>HKEY_USERS<\/code>) that store a user&#8217;s settings, desktop, and documents. It is created automatically on that user&#8217;s first login.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">On a Windows VPS you always create local accounts. The profile takes care of itself the first time the user signs in \u2014 unless you run into the corruption issues covered at the end.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Create the User Account<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Open an elevated PowerShell (right-click PowerShell &gt; <em>Run as administrator<\/em>) and run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$pass = ConvertTo-SecureString 'Str0ng-Passw0rd-2026!' -AsPlainText -Force\nNew-LocalUser -Name 'dev1' -Password $pass -FullName 'Developer One' -Description 'Web dev account' -AccountNeverExpires<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Notes on the switches:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-AccountNeverExpires<\/code> prevents the &#8220;password expired&#8221; lockout surprise; combine it with a rotation policy instead.<\/li>\n<li><code>-PasswordNeverExpires<\/code> is a separate flag \u2014 only set it if you truly want a permanent password.<\/li>\n<li>For service accounts (agents, scheduled tasks), add <code>-UserMayNotChangePassword<\/code>.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Grant the Right Group Membership<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Group membership is what actually grants power. The three groups that matter on a standalone VPS:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Group<\/th><th>What members can do<\/th><th>Use for<\/th><\/tr><\/thead><tbody><tr><td>Administrators<\/td><td>Everything: install software, change system settings, manage other users<\/td><td>You, and only you<\/td><\/tr><tr><td>Remote Desktop Users<\/td><td>Log in over RDP, but with standard-user rights once inside<\/td><td>Every human who needs access<\/td><\/tr><tr><td>Users<\/td><td>Basic local logon and file access; cannot RDP by default<\/td><td>Service and batch accounts<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">A common mistake is adding a person to Administrators so they can RDP \u2014 that also gives them full control of the server. The correct pattern is <strong>Remote Desktop Users for access, Administrators only for people who genuinely administer<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Add-LocalGroupMember -Group 'Remote Desktop Users' -Member 'dev1'\n# Only if they truly need admin rights:\nAdd-LocalGroupMember -Group 'Administrators' -Member 'dev1'\n# Verify:\nGet-LocalGroupMember -Group 'Remote Desktop Users'<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Membership changes apply on the user&#8217;s next login \u2014 no reboot required. If the user is already connected, ask them to sign out and back in. For a deeper discussion of least-privilege design, read our <a href=\"https:\/\/windows-vps.org\/blog\/windows-vps-user-accounts-least-privilege\/\">guide to user accounts and least privilege on Windows VPS<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Manage the Profile<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The profile appears after the user&#8217;s first successful login. To inspect all profiles on the machine, open <strong>System Properties &gt; Advanced &gt; Settings (under User Profiles)<\/strong>, or use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-CimInstance Win32_UserProfile | Select-Object LocalPath, Loaded, Special<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">To copy a standard profile to new users (e.g. pre-configuring a default desktop), use the <em>Copy To<\/em> button in the User Profiles dialog and grant <code>Everyone<\/code> read permission on the copied folder \u2014 that is the classic &#8220;default profile&#8221; trick. Do not hand-edit profile folders while a user is logged in; you will corrupt them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Disable or Remove Users Cleanly<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When someone leaves the project, disable the account rather than deleting it \u2014 you keep the audit trail and can restore access later without rebuilding the profile:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Disable-LocalUser -Name 'dev1'\n# Permanent removal (also deletes the profile on next clean-up):\nRemove-LocalUser -Name 'dev1'<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">After <code>Remove-LocalUser<\/code>, delete the leftover <code>C:\\Users\\dev1<\/code> folder and its registry profile key only if you are certain nothing needs the data.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Two Profile Problems You Will Actually Hit<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. &#8220;User cannot connect&#8221; over RDP<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Almost always a group membership issue: the account is not in <em>Remote Desktop Users<\/em> (or <em>Administrators<\/em>), or the connection is being blocked by the account lockout policy. Check with <code>Get-LocalGroupMember -Group 'Remote Desktop Users'<\/code> and confirm the user is not locked out (<code>net user dev1<\/code> shows the account state).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. User gets a &#8220;temporary profile&#8221; every login<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Each login starts fresh with a <code>TEMP<\/code> profile and settings never persist. The cause is a broken registry reference. In <code>regedit<\/code>, navigate to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>HKLM\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Find the SID matching the user (check <code>Get-LocalUser dev1 | Select SID<\/code>), and inspect its <code>ProfileImagePath<\/code>. If the value is wrong or the key ends in <code>.bak<\/code>, the profile is orphaned. Easiest reliable fix: back up the user&#8217;s data, delete the account and profile, and recreate the account. Renaming SID keys by hand works, but one typo produces a user who cannot log in at all.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrap-Up<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">User management on a Windows VPS is three commands and one rule: <em>Remote Desktop Users for access, Administrators for control, profiles take care of themselves until they break<\/em>. Keep a naming convention (<code>dev-<\/code>, <code>ops-<\/code>, <code>svc-<\/code>), never share passwords, and audit group membership quarterly. When you size the plan for multiple concurrent RDP users, remember that each session consumes RAM \u2014 check the <a href=\"https:\/\/windows-vps.org\/#features\">specs and pricing comparison<\/a> so your chosen plan has headroom for everyone.<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>If you are running Windows 10 on a Virtual Private Server and need to create separate accounts for different users or projects you might be wondering exactly how to add another profile on windows 10 on vps without disrupting your existing setup A VPS gives you remote access to a full Windows environment which means you can manage profiles in much the same way as you would on a local machine For detailed VPS options and Windows hosting resources you can visit\u00a0Windows VPS\u00a0which offers practical guidance for setting up and managing remote servers<\/p>\n","protected":false},"author":1,"featured_media":232,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":2,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-231","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>How to Add Users and Manage Profiles on a Windows VPS - Windows VPS Blog<\/title>\n<meta name=\"description\" content=\"If you are running Windows 10 on a Virtual Private Server and need to create separate accounts for different users or projects you might be wondering exactly how to add another profile on windows 10 on vps without disrupting your existing setup A VPS gives you remote access to a full Windows environment which means you can manage profiles in much the same way as you would on a local machine For detailed VPS options and Windows hosting resources you can visit\u00a0Windows VPS\u00a0which offers practical guidance for setting up and managing remote servers\" \/>\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-add-another-profile-on-windows-10-on-vps-complete-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add Users and Manage Profiles on a Windows VPS\" \/>\n<meta property=\"og:description\" content=\"How to Add Users and Manage Profiles on a Windows VPS\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-30T02:00:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-08T22:20:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.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-add-another-profile-on-windows-10-on-vps-complete-guide\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/\",\"name\":\"How to Add Users and Manage Profiles on a Windows VPS - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.jpg\",\"datePublished\":\"2025-12-30T02:00:05+00:00\",\"dateModified\":\"2026-08-08T22:20:47+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"description\":\"If you are running Windows 10 on a Virtual Private Server and need to create separate accounts for different users or projects you might be wondering exactly how to add another profile on windows 10 on vps without disrupting your existing setup A VPS gives you remote access to a full Windows environment which means you can manage profiles in much the same way as you would on a local machine For detailed VPS options and Windows hosting resources you can visit\u00a0Windows VPS\u00a0which offers practical guidance for setting up and managing remote servers\",\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#primaryimage\",\"url\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.jpg\",\"contentUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.jpg\",\"width\":640,\"height\":426},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add Users and Manage Profiles on a Windows VPS\"}]},{\"@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 Add Users and Manage Profiles on a Windows VPS - Windows VPS Blog","description":"If you are running Windows 10 on a Virtual Private Server and need to create separate accounts for different users or projects you might be wondering exactly how to add another profile on windows 10 on vps without disrupting your existing setup A VPS gives you remote access to a full Windows environment which means you can manage profiles in much the same way as you would on a local machine For detailed VPS options and Windows hosting resources you can visit\u00a0Windows VPS\u00a0which offers practical guidance for setting up and managing remote servers","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-add-another-profile-on-windows-10-on-vps-complete-guide\/","og_locale":"en_US","og_type":"article","og_title":"How to Add Users and Manage Profiles on a Windows VPS","og_description":"How to Add Users and Manage Profiles on a Windows VPS","og_url":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/","og_site_name":"Windows VPS Blog","article_published_time":"2025-12-30T02:00:05+00:00","article_modified_time":"2026-08-08T22:20:47+00:00","og_image":[{"width":640,"height":426,"url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.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-add-another-profile-on-windows-10-on-vps-complete-guide\/","url":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/","name":"How to Add Users and Manage Profiles on a Windows VPS - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#primaryimage"},"image":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.jpg","datePublished":"2025-12-30T02:00:05+00:00","dateModified":"2026-08-08T22:20:47+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"description":"If you are running Windows 10 on a Virtual Private Server and need to create separate accounts for different users or projects you might be wondering exactly how to add another profile on windows 10 on vps without disrupting your existing setup A VPS gives you remote access to a full Windows environment which means you can manage profiles in much the same way as you would on a local machine For detailed VPS options and Windows hosting resources you can visit\u00a0Windows VPS\u00a0which offers practical guidance for setting up and managing remote servers","breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#primaryimage","url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.jpg","contentUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2025\/12\/96321-4.jpg","width":640,"height":426},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/how-to-add-another-profile-on-windows-10-on-vps-complete-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Add Users and Manage Profiles on a Windows VPS"}]},{"@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\/231","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=231"}],"version-history":[{"count":3,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/231\/revisions"}],"predecessor-version":[{"id":568,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/231\/revisions\/568"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media\/232"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=231"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=231"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=231"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}