{"id":243,"date":"2026-01-02T03:30:10","date_gmt":"2026-01-02T03:30:10","guid":{"rendered":"https:\/\/windows-vps.org\/blog\/?p=243"},"modified":"2026-08-03T22:28:11","modified_gmt":"2026-08-03T22:28:11","slug":"a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently","status":"publish","type":"post","link":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/","title":{"rendered":"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy"},"content":{"rendered":"<p class=\"wp-block-paragraph\">Hypervisor snapshots are handy, but they are not backups \u2014 they live on the same infrastructure as your VPS and disappear with it. The tool that ships with every Windows Server edition and does the job properly is wbadmin, built on Volume Shadow Copy (VSS). It is free, scriptable, and capable of full bare-metal restores. Here is how to put it to work on a Windows VPS.<\/p>\n\n<p class=\"wp-block-paragraph\">Backups need storage, and storage costs money, so the plan you choose matters. <a href=\"https:\/\/windows-vps.org\/#providers\">Our comparison table<\/a> shows which providers include a second data disk or cheap add-on volumes \u2014 the minimum requirement for the strategy below.<\/p>\n\n<h2 class=\"wp-block-heading\">Why VSS Matters<\/h2>\n\n<p class=\"wp-block-paragraph\">VSS coordinates with running applications \u2014 SQL Server, IIS, file services \u2014 so files are copied in a consistent state instead of a half-written mess. wbadmin drives VSS automatically, which is why a wbadmin backup is restorable in a way that a raw file copy usually is not.<\/p>\n\n<h2 class=\"wp-block-heading\">Install Windows Server Backup<\/h2>\n\n<p class=\"wp-block-paragraph\">The feature is not enabled by default on Server Core or minimal installs. One command fixes that:<\/p>\n\n<pre class=\"wp-block-code\"><code>Install-WindowsFeature Windows-Server-Backup<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Verify with <code>Get-WindowsFeature Windows-Server-Backup | Select-Object Name, InstallState<\/code> \u2014 InstallState should read Installed.<\/p>\n\n<h2 class=\"wp-block-heading\">Your First Backup<\/h2>\n\n<p class=\"wp-block-paragraph\">Two rules before you start: the backup target must be a different volume (wbadmin refuses to back up C: to C:), and the target should be a dedicated data disk, not the OS disk. Then:<\/p>\n\n<pre class=\"wp-block-code\"><code>wbadmin start backup -backupTarget:E: -include:C: -allCritical -quiet<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">-allCritical includes the System Reserved and boot volumes, which is what makes bare-metal recovery possible. The result is a VHD\/VHDX set under E:\\WindowsImageBackup\\<hostname>\\ that you can also mount and browse file-by-file.<\/p>\n\n<h2 class=\"wp-block-heading\">Verify the Backup<\/h2>\n\n<p class=\"wp-block-paragraph\">A backup you have never restored is a guess. At minimum, confirm the job completed and spot-check the output:<\/p>\n\n<pre class=\"wp-block-code\"><code>wbadmin get status\nMount-DiskImage -ImagePath E:\\WindowsImageBackup\\<hostname>\\<backup-id>\\C_Volume.vhdx<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Mounting the VHD lets you browse the backed-up file system and pull out a single file if that is all you need. When you are done, <code>Dismount-DiskImage<\/code> with the same image path. A quarterly full restore drill is still worth doing \u2014 but the mount check catches most problems in seconds.<\/p>\n\n<h2 class=\"wp-block-heading\">Check and Automate<\/h2>\n\n<p class=\"wp-block-paragraph\">List what exists:<\/p>\n\n<pre class=\"wp-block-code\"><code>wbadmin get versions<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Then schedule a nightly run at 02:00:<\/p>\n\n<pre class=\"wp-block-code\"><code>wbadmin enable backup -addtarget:E: -schedule:02:00 -include:C: -allCritical -quiet<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">Prefer more control? Skip enable backup and register a Task Scheduler job that runs the start backup command instead \u2014 identical result, easier to extend with a pre- and post-check.<\/p>\n\n<p class=\"wp-block-paragraph\">Ad-hoc backups keep every version until the target disk fills. To let wbadmin reclaim space automatically, add the -allowDeleteOldBackups switch to the start backup command \u2014 it deletes the oldest backup set only when the target runs out of room, which is the behavior you want on a small VPS data disk.<\/p>\n\n<h2 class=\"wp-block-heading\">Restore When It Counts<\/h2>\n\n<p class=\"wp-block-paragraph\">Find the version you want, then recover a volume:<\/p>\n\n<pre class=\"wp-block-code\"><code>wbadmin get versions -backupTarget:E:\nwbadmin start recovery -version:08\/04\/2026-02:00 -itemType:Volume -items:C: -recoveryTarget:C:<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">For a full bare-metal restore, boot from Windows Server installation media and choose System Image Recovery \u2014 wbadmin backups are exactly what that wizard expects.<\/p>\n\n<p class=\"wp-block-paragraph\">Practice restores in a disposable VM rather than on your live server: install a fresh Windows Server trial, recover the volume from the backup, and confirm your application starts. That single exercise proves both the backup itself and your restore procedure \u2014 the two halves most backup plans never test together.<\/p>\n\n<h2 class=\"wp-block-heading\">Get the Backup Off-Site<\/h2>\n\n<p class=\"wp-block-paragraph\">A backup on a second disk of the same VPS survives a crashed OS, not a failed provider. wbadmin output is plain VHD files, so copying them off-site is trivial:<\/p>\n\n<pre class=\"wp-block-code\"><code>robocopy E:\\WindowsImageBackup \\\\backup-vps\\backups$\\WindowsImageBackup `\n  \/MIR \/R:2 \/W:5 \/LOG:C:\\Scripts\\robocopy.log<\/code><\/pre>\n\n<p class=\"wp-block-paragraph\">On a VPS you often do not have a second local disk at all \u2014 in that case a cheap second VPS or object storage mounted over SMB is a perfectly valid wbadmin target.<\/p>\n\n<h2 class=\"wp-block-heading\">VPS-Specific Caveats<\/h2>\n\n<ul class=\"wp-block-list\"><li>Never keep the only backup on the same disk as the OS \u2014 a disk failure takes both.<\/li><li>Provider snapshots are hypervisor-level conveniences, not a substitute for VSS-consistent backups.<\/li><li>Test a restore at least quarterly. A backup you have never restored is a guess.<\/li><li>Monitor the backup disk: wbadmin keeps multiple versions until the target fills up.<\/li><\/ul>\n\n<p class=\"wp-block-paragraph\">If your current host does not give you enough disk for a backup target, <a href=\"https:\/\/www.awin1.com\/cread.php?awinmid=116629&#038;awinaffid=2520403\" target=\"_blank\" rel=\"noreferrer noopener sponsored\">Database Mart<\/a> offers Windows Server VPS plans from $6.99\/mo with room for a data disk \u2014 a second cheap VPS also doubles as the off-site copy target.<\/p>\n\n<p class=\"wp-block-paragraph\">wbadmin is not glamorous, but it is reliable, free, and built into every Windows Server edition. Snapshots for quick rollbacks, wbadmin for real restores, and an off-site copy for disasters covers a Windows VPS properly. <a href=\"https:\/\/windows-vps.org\/#providers\">Compare plans side by side in our comparison table<\/a> to make sure the host you pick gives you a second disk for backups in the first place.<\/p>","protected":false},"excerpt":{"rendered":"<p>Learning\u00a0how to backup Windows VPS\u00a0is one of the smartest things you can do to protect your data and ensure your website or application stays online even if something goes wrong. A small mistake, a malware attack, or a system crash can easily cause data loss. By setting up a proper backup strategy, you save yourself from long downtime and expensive recovery services. For reliable VPS hosting resources and detailed solutions, you can visit\u00a0Windows VPS\u00a0to get expert insights.<\/p>\n","protected":false},"author":1,"featured_media":244,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":1,"footnotes":""},"categories":[5],"tags":[],"class_list":["post-243","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>Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy - Windows VPS Blog<\/title>\n<meta name=\"description\" content=\"Learning\u00a0how to backup Windows VPS\u00a0is one of the smartest things you can do to protect your data and ensure your website or application stays online even if something goes wrong. A small mistake, a malware attack, or a system crash can easily cause data loss. By setting up a proper backup strategy, you save yourself from long downtime and expensive recovery services. For reliable VPS hosting resources and detailed solutions, you can visit\u00a0Windows VPS\u00a0to get expert insights.\" \/>\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\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy\" \/>\n<meta property=\"og:description\" content=\"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy\" \/>\n<meta property=\"og:url\" content=\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/\" \/>\n<meta property=\"og:site_name\" content=\"Windows VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-02T03:30:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-03T22:28:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"640\" \/>\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\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/\",\"url\":\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/\",\"name\":\"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy - Windows VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg\",\"datePublished\":\"2026-01-02T03:30:10+00:00\",\"dateModified\":\"2026-08-03T22:28:11+00:00\",\"author\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58\"},\"description\":\"Learning\u00a0how to backup Windows VPS\u00a0is one of the smartest things you can do to protect your data and ensure your website or application stays online even if something goes wrong. A small mistake, a malware attack, or a system crash can easily cause data loss. By setting up a proper backup strategy, you save yourself from long downtime and expensive recovery services. For reliable VPS hosting resources and detailed solutions, you can visit\u00a0Windows VPS\u00a0to get expert insights.\",\"breadcrumb\":{\"@id\":\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#primaryimage\",\"url\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg\",\"contentUrl\":\"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg\",\"width\":960,\"height\":640},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/windows-vps.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy\"}]},{\"@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":"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy - Windows VPS Blog","description":"Learning\u00a0how to backup Windows VPS\u00a0is one of the smartest things you can do to protect your data and ensure your website or application stays online even if something goes wrong. A small mistake, a malware attack, or a system crash can easily cause data loss. By setting up a proper backup strategy, you save yourself from long downtime and expensive recovery services. For reliable VPS hosting resources and detailed solutions, you can visit\u00a0Windows VPS\u00a0to get expert insights.","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\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/","og_locale":"en_US","og_type":"article","og_title":"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy","og_description":"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy","og_url":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/","og_site_name":"Windows VPS Blog","article_published_time":"2026-01-02T03:30:10+00:00","article_modified_time":"2026-08-03T22:28:11+00:00","og_image":[{"width":960,"height":640,"url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.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\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/","url":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/","name":"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy - Windows VPS Blog","isPartOf":{"@id":"https:\/\/windows-vps.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#primaryimage"},"image":{"@id":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#primaryimage"},"thumbnailUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg","datePublished":"2026-01-02T03:30:10+00:00","dateModified":"2026-08-03T22:28:11+00:00","author":{"@id":"https:\/\/windows-vps.org\/blog\/#\/schema\/person\/44caceed916d0db318aa08d5623a7a58"},"description":"Learning\u00a0how to backup Windows VPS\u00a0is one of the smartest things you can do to protect your data and ensure your website or application stays online even if something goes wrong. A small mistake, a malware attack, or a system crash can easily cause data loss. By setting up a proper backup strategy, you save yourself from long downtime and expensive recovery services. For reliable VPS hosting resources and detailed solutions, you can visit\u00a0Windows VPS\u00a0to get expert insights.","breadcrumb":{"@id":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#primaryimage","url":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg","contentUrl":"https:\/\/windows-vps.org\/blog\/wp-content\/uploads\/2026\/01\/33669.jpg","width":960,"height":640},{"@type":"BreadcrumbList","@id":"https:\/\/windows-vps.org\/blog\/a-complete-tutorial-on-how-to-backup-windows-vps-safely-and-efficiently\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/windows-vps.org\/blog\/"},{"@type":"ListItem","position":2,"name":"Windows VPS Backups with wbadmin and VSS: A Native, No-Cost Strategy"}]},{"@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\/243","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=243"}],"version-history":[{"count":4,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/243\/revisions"}],"predecessor-version":[{"id":530,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/posts\/243\/revisions\/530"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media\/244"}],"wp:attachment":[{"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/media?parent=243"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/categories?post=243"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/windows-vps.org\/blog\/wp-json\/wp\/v2\/tags?post=243"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}