{"id":462,"date":"2026-06-25T03:36:01","date_gmt":"2026-06-25T03:36:01","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=462"},"modified":"2026-08-11T22:23:57","modified_gmt":"2026-08-11T22:23:57","slug":"set-up-windows-vps-remote-development-teams-iis-sql-server-rdp","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/","title":{"rendered":"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">For a development team that needs web hosting, a shared database, and remote desktop access from a single box, the classic stack is a Windows VPS running IIS, SQL Server, and RDP. It is also a stack where small configuration mistakes &#8212; an exposed SQL port, an unisolated application pool, a licensing misunderstanding &#8212; surface later as outages or compliance problems. This article covers the configuration decisions that matter, in the order you should make them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Right-sizing the box<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Dev workloads are more demanding than production hosting of the same app, because multiple people compile, run tests, and query databases at the same time. Plan for concurrency:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Team size<\/th><th>Recommended specs<\/th><th>Rough monthly cost<\/th><\/tr><\/thead><tbody>\n<tr><td>2&#8211;3 developers<\/td><td>4 vCPU, 8 GB RAM, 160 GB NVMe<\/td><td>$50&#8211;$80<\/td><\/tr>\n<tr><td>4&#8211;6 developers<\/td><td>8 vCPU, 16 GB RAM, 320 GB NVMe<\/td><td>$100&#8211;$150<\/td><\/tr>\n<tr><td>7&#8211;10 developers<\/td><td>12 vCPU, 32 GB RAM, 500 GB NVMe<\/td><td>$180&#8211;$250<\/td><\/tr>\n<\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">NVMe matters here: SQL Server I\/O and build times both respond directly to storage latency. If you are still comparing offers, <a href=\"https:\/\/windows-vps.org\/#providers\">see the full specs and pricing on the main site<\/a> before you commit.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install and isolate IIS<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Install IIS with the features a dev team actually uses, then isolate each developer&#8217;s site in its own application pool so one person&#8217;s crashing code cannot take down the staging site:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Install-WindowsFeature Web-Server, Web-WebSockets, Web-Asp-Net45, `\n    Web-Mgmt-Console, Web-Scripting-Tools -IncludeManagementTools\n\n# one app pool per developer\nNew-WebAppPool -Name \"dev.alice\"\nNew-WebSite -Name \"alice.dev\" -Port 8081 -PhysicalPath \"D:\\Sites\\alice\" `\n    -ApplicationPool \"dev.alice\" -Force<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Dynamic compression<\/strong> for API responses during debugging.<\/li>\n<li><strong>Failed Request Tracing<\/strong> (FREB) on each dev site &#8212; the XML traces are invaluable when a developer reports an HTTP 500 with no log output.<\/li>\n<li><strong>URL Rewrite<\/strong> module if anyone is testing clean URLs or a reverse proxy setup.<\/li>\n<li><strong>Disable recycling during work hours<\/strong> on dev app pools so a restart does not drop in-flight sessions.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Every dev site should answer on HTTPS from day one, or you will spend time debugging mixed-content and cookie problems that only exist in development. A self-signed certificate silences nothing for browsers, so either issue real certificates with a Let&#8217;s Encrypt client (Win-ACME is the most common on Windows) or, for internal-only dev, add the dev hostnames to a small internal CA. Bind the certificate in IIS Manager and force an HTTPS redirect per site so nobody accidentally tests over plain HTTP.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SQL Server Developer Edition for the team<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">SQL Server Developer Edition is free for development and testing (full feature set, no production rights) &#8212; the correct choice for a dev box. Enable TCP\/IP after install, then create one login and one sandbox database per developer:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>-- per-developer login + sandbox database\nCREATE LOGIN [dev_alice] WITH PASSWORD = 'StrongP@ssw0rd!';\nCREATE DATABASE [DevDB_Alice];\nUSE [DevDB_Alice];\nCREATE USER [dev_alice] FROM LOGIN [dev_alice];\nEXEC sp_addrolemember 'db_owner', 'dev_alice';\n\n-- cap the size so one runaway query can't fill the disk\nALTER DATABASE [DevDB_Alice] MODIFY FILE\n  (NAME = 'DevDB_Alice', MAXSIZE = 5120 MB);<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Do <strong>not<\/strong> expose port 1433 to the internet. Developers should reach SQL Server through the same VPN or RD Gateway you use for RDP, or through an SSH tunnel. A firewall rule scoped to your VPN subnet is the minimum:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>New-NetFirewallRule -DisplayName \"SQL-VPN\" -Direction Inbound -LocalPort 1433 `\n  -Protocol TCP -RemoteAddress 10.8.0.0\/24 -Action Allow<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">On the SQL side, also enable the dedicated administrator connection (DAC) and leave it local-only. If a runaway application wedges the instance, DAC is the way in when normal connections are refused &#8212; a small setting that has saved more than one dev environment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">RDP for more than two users: know the licensing reality<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Windows Server permits two concurrent RDP sessions without extra licensing. Teams larger than that have three realistic paths:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Remote Desktop Services with CALs<\/strong> (roughly $175 per user or $85 per device) &#8212; the licensed way to run 3+ simultaneous sessions.<\/li>\n<li><strong>RDP wrappers that patch termsrv.dll<\/strong> &#8212; they work until an update breaks them, and they violate your licensing terms. Not recommended for anything you depend on.<\/li>\n<li><strong>Browser-based development<\/strong> (VS Code Remote, code-server, web IDEs) &#8212; bypasses the session limit entirely and is often a better fit for developers who only need an editor.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Whichever route you take, restrict RDP itself to your VPN or office IP range. A <code>RemoteAddress<\/code> scoped firewall rule costs one line and removes most brute-force noise:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>New-NetFirewallRule -DisplayName \"RDP-VPN\" -Direction Inbound -LocalPort 3389 `\n  -Protocol TCP -RemoteAddress 10.8.0.0\/24 -Action Allow<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Backup and recovery for team data<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Daily VSS snapshots of the system and data drives via your provider&#8217;s control panel.<\/li>\n<li>Nightly SQL Server backups (Ola Hallengren&#8217;s maintenance scripts are the standard) to a separate volume.<\/li>\n<li>Git for all code &#8212; the VPS is a disposable compute layer; repositories are the real backup.<\/li>\n<li>Configuration-as-code: document IIS config, firewall rules, and SQL settings in the repo so a compromised or failed server can be rebuilt in under an hour.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">The order of operations<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Set up the firewall and VPN <em>before<\/em> installing SQL Server and IIS, so nothing is ever exposed even briefly. Create per-developer accounts before handing out access, and verify backups before the team starts storing real work on the box. A single Windows VPS running IIS, SQL Server, and RDP is a legitimate dev hub for small teams &#8212; the ones that fail are the ones that skipped isolation and access control. If you are still choosing a provider, <a href=\"https:\/\/windows-vps.org\/#providers\">compare Windows VPS plans side by side<\/a>, or look at <a href=\"https:\/\/www.anrdoezrs.net\/click-101539688-17162719?sid=windowsvps\" rel=\"noreferrer noopener sponsored\" target=\"_blank\">Contabo&#8217;s Windows VPS offers<\/a> for high-RAM configurations at budget prices.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For a development team that needs web hosting, a shared database, and remote desktop access from a single box, the classic stack is a Windows VPS running IIS, SQL Server, and RDP. It is also a stack where small configuration mistakes &#8212; an exposed SQL port, an unisolated application pool, a licensing misunderstanding &#8212; surface &#8230; <a title=\"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams\" class=\"read-more\" href=\"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/\" aria-label=\"Read more about IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams\">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":3,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-462","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>IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams - 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\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams\" \/>\n<meta property=\"og:description\" content=\"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-25T03:36:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-11T22:23:57+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=\"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\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/\",\"name\":\"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"datePublished\":\"2026-06-25T03:36:01+00:00\",\"dateModified\":\"2026-08-11T22:23:57+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams\"}]},{\"@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":"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams - 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\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/","og_locale":"en_US","og_type":"article","og_title":"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams","og_description":"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams","og_url":"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/","og_site_name":"Windows VPS Blog","article_published_time":"2026-06-25T03:36:01+00:00","article_modified_time":"2026-08-11T22:23:57+00:00","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\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/","url":"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/","name":"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"datePublished":"2026-06-25T03:36:01+00:00","dateModified":"2026-08-11T22:23:57+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/set-up-windows-vps-remote-development-teams-iis-sql-server-rdp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"IIS, SQL Server, and RDP Setup on a Windows VPS for Dev Teams"}]},{"@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\/462","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=462"}],"version-history":[{"count":3,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/462\/revisions"}],"predecessor-version":[{"id":597,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/462\/revisions\/597"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=462"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=462"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=462"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}