{"id":217,"date":"2026-06-02T23:13:35","date_gmt":"2026-06-03T06:13:35","guid":{"rendered":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/"},"modified":"2026-06-02T23:13:35","modified_gmt":"2026-06-03T06:13:35","slug":"windows-server-backup-and-recovery-guide","status":"publish","type":"post","link":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/","title":{"rendered":"Windows Server Backup and Recovery: A Complete Setup Guide"},"content":{"rendered":"<h2>Overview<\/h2>\n<p>Windows backup is something most people configure once, forget about, and then desperately Google when disaster strikes. Whether you&#8217;re running a Windows Server 2019 or 2022 VPS, a <a href=\"https:\/\/www.hostandtech.com\/dedicated\/\">Dedicated Server<\/a>, or a self-managed instance, having a tested, reliable backup strategy isn&#8217;t optional \u2014 it&#8217;s the difference between a bad afternoon and a catastrophic data loss event.<\/p>\n<p>Windows Server Backup (WSB) is Microsoft&#8217;s built-in solution. It handles full server backups, volume-level backups, system state backups, and bare-metal recovery images. It&#8217;s not the flashiest tool, but it&#8217;s well-integrated with the OS and doesn&#8217;t require a third-party agent. The command-line counterpart, <code class=\"\" data-line=\"\">wbadmin<\/code>, gives you everything you need to automate and script backup jobs.<\/p>\n<p>This article covers installation, scheduling automated backups, restoring files and full system images, and the problems you&#8217;re most likely to hit along the way. If you&#8217;ve inherited a server and aren&#8217;t sure whether backups are even running, start from the top.<\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>Windows Server 2016, 2019, or 2022 (steps are consistent across all three; any differences are noted)<\/li>\n<li>Administrator or local administrator account on the server<\/li>\n<li>A backup destination: a separate local volume, external drive, network share (UNC path), or a mapped drive \u2014 <strong>not the same volume you&#8217;re backing up<\/strong><\/li>\n<li>Sufficient free space on the backup destination \u2014 at minimum 1.5x the size of the data you&#8217;re protecting<\/li>\n<li>RDP access or physical\/console access to the server<\/li>\n<li>For bare-metal recovery: Windows Server installation media (ISO or USB) matching your server&#8217;s OS version<\/li>\n<\/ul>\n<h2>Step 1: Install Windows Server Backup<\/h2>\n<p>WSB isn&#8217;t installed by default on most Server Core or minimal installs. Check first, then install if it&#8217;s missing.<\/p>\n<p>Open PowerShell as Administrator and run:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-1\"><code class=\"\" data-line=\"\">Get-WindowsFeature -Name Windows-Server-Backup\nInstall-WindowsFeature -Name Windows-Server-Backup<\/code><\/pre>\n<\/div>\n<p>If you prefer Server Manager: go to <strong>Manage &gt; Add Roles and Features &gt; Features<\/strong>, check <strong>Windows Server Backup<\/strong>, and click <strong>Install<\/strong>.<\/p>\n<p>\ud83d\udcdd Note: On Server Core installations, Server Manager isn&#8217;t available. Use the PowerShell method above.<\/p>\n<h2>Step 2: Configure a One-Time Backup via GUI<\/h2>\n<p>This is useful for an immediate pre-maintenance backup or to verify your setup works before automating it.<\/p>\n<ol>\n<li>Open <strong>Windows Server Backup<\/strong> from the Start menu or via <code class=\"\" data-line=\"\">wbadmin start backup<\/code>.<\/li>\n<li>In the Actions pane on the right, click <strong>Backup Once<\/strong>.<\/li>\n<li>Select <strong>Different options<\/strong>, then click <strong>Next<\/strong>.<\/li>\n<li>Choose <strong>Full server<\/strong> to back up all volumes, or <strong>Custom<\/strong> to select specific volumes or folders.<\/li>\n<li>Set your backup destination: local drive, remote shared folder, or DVD. For production use, choose a <strong>Remote shared folder<\/strong> (UNC path like <code class=\"\" data-line=\"\">\\backupservershare<\/code>) or a dedicated local volume.<\/li>\n<li>Click <strong>Backup<\/strong> to start immediately.<\/li>\n<\/ol>\n<p>\u26a0 Warning: Never back up to the same volume that contains your OS or the data you&#8217;re protecting. If that volume fails, you lose the backup too. Use a separate disk or a network share.<\/p>\n<h2>Step 3: Schedule Automated Backups via GUI<\/h2>\n<ol>\n<li>In Windows Server Backup, click <strong>Backup Schedule<\/strong> in the Actions pane.<\/li>\n<li>Select <strong>Full server<\/strong> or <strong>Custom<\/strong> for the backup configuration.<\/li>\n<li>Set the schedule \u2014 once or twice daily is typical for production servers. More frequent backups mean smaller recovery point objectives (RPO).<\/li>\n<li>Choose your destination. If using a dedicated backup disk, WSB will format it and manage it automatically. If using a network share, you&#8217;ll provide a UNC path and credentials.<\/li>\n<li>Click <strong>Finish<\/strong> to save the schedule.<\/li>\n<\/ol>\n<p>\ud83d\udcdd Note: When you select a local disk as a scheduled backup destination, WSB takes exclusive ownership of that disk and hides it from Windows Explorer. This is by design. Don&#8217;t panic when it disappears from <strong>This PC<\/strong>.<\/p>\n<h2>Step 4: Schedule and Run Backups via wbadmin (Command Line)<\/h2>\n<p>For scripting, automation, or Server Core environments, <code class=\"\" data-line=\"\">wbadmin<\/code> is the right tool. Here&#8217;s how to run a full backup to a network share:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-2\"><code class=\"\" data-line=\"\">wbadmin start backup \n  -backupTarget:\\backupserverwinbackups \n  -include:C:,D: \n  -allCritical \n  -systemState \n  -vssFull \n  -quiet<\/code><\/pre>\n<\/div>\n<p>Breaking down the flags:<\/p>\n<ul>\n<li><code class=\"\" data-line=\"\">-allCritical<\/code> \u2014 includes all volumes required for a bare-metal recovery, even if you didn&#8217;t explicitly list them<\/li>\n<li><code class=\"\" data-line=\"\">-systemState<\/code> \u2014 backs up Active Directory, registry, COM+ class registration database, and boot files; essential if you&#8217;re running AD DS or DNS roles<\/li>\n<li><code class=\"\" data-line=\"\">-vssFull<\/code> \u2014 triggers a full VSS (Volume Shadow Copy) backup, which truncates transaction logs on supported apps like SQL Server; use <code class=\"\" data-line=\"\">-vssCopy<\/code> if you have a separate SQL backup job handling log truncation<\/li>\n<li><code class=\"\" data-line=\"\">-quiet<\/code> \u2014 suppresses confirmation prompts, required for scripted\/scheduled runs<\/li>\n<\/ul>\n<p>To schedule this as a daily task via Task Scheduler:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-3\"><code class=\"\" data-line=\"\">schtasks \/create \/tn &quot;DailyServerBackup&quot; \/tr &quot;wbadmin start backup -backupTarget:\\\\backupserver\\winbackups -allCritical -systemState -vssFull -quiet&quot; \/sc daily \/st 02:00 \/ru SYSTEM \/f<\/code><\/pre>\n<\/div>\n<p>\ud83d\udcdd Note: The scheduled task runs as SYSTEM, which means the network share must allow the computer account (e.g., <code class=\"\" data-line=\"\">SERVERNAME$<\/code>) write access, or you&#8217;ll need to specify alternate credentials using <code class=\"\" data-line=\"\">\/ru<\/code> and <code class=\"\" data-line=\"\">\/rp<\/code> flags.<\/p>\n<h2>Step 5: Restore Individual Files and Folders<\/h2>\n<p>This is the most common recovery scenario \u2014 someone deleted a file or a folder was corrupted.<\/p>\n<ol>\n<li>Open <strong>Windows Server Backup<\/strong> and click <strong>Recover<\/strong> in the Actions pane.<\/li>\n<li>Select where the backup is stored: <strong>This server<\/strong> or <strong>Another location<\/strong> (network or external drive).<\/li>\n<li>Choose the backup date and time from the calendar.<\/li>\n<li>Select <strong>Files and folders<\/strong> as the recovery type.<\/li>\n<li>Browse to the file or folder you need and click <strong>Next<\/strong>.<\/li>\n<li>Choose whether to restore to the original location or an alternate path. If you&#8217;re unsure, restore to an alternate path first and verify the file before overwriting anything live.<\/li>\n<li>Click <strong>Recover<\/strong>.<\/li>\n<\/ol>\n<p>Via command line:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-4\"><code class=\"\" data-line=\"\">wbadmin start recovery \n  -version:03\/15\/2025-02:00 \n  -itemType:File \n  -items:C:UsersAdministratorDocumentsreport.xlsx \n  -recoveryTarget:C:Restored \n  -quiet<\/code><\/pre>\n<\/div>\n<p>Get the correct version identifier first:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-5\"><code class=\"\" data-line=\"\">wbadmin get versions<\/code><\/pre>\n<\/div>\n<h2>Step 6: Bare-Metal Recovery (Full Server Restore)<\/h2>\n<p>This is the procedure when the server OS is unbootable or the system drive has failed. You need your Windows Server installation media and a backup that includes <code class=\"\" data-line=\"\">-allCritical<\/code>.<\/p>\n<ol>\n<li>Boot from the Windows Server ISO or USB.<\/li>\n<li>On the language selection screen, click <strong>Next<\/strong>, then <strong>Repair your computer<\/strong> (bottom-left, not Install Now).<\/li>\n<li>Click <strong>Troubleshoot &gt; System Image Recovery<\/strong>.<\/li>\n<li>Windows will scan for available backups. If it doesn&#8217;t find yours automatically, click <strong>Select a system image<\/strong> and provide the network share path or connect the external drive.<\/li>\n<li>Select the backup version you want to restore, confirm the disk selection, and click through to start the recovery.<\/li>\n<\/ol>\n<p>\u26a0 Warning: Bare-metal recovery will overwrite the entire target disk. Double-check you&#8217;ve selected the correct destination disk before confirming. On servers with multiple drives, it&#8217;s easy to select the wrong one.<\/p>\n<h2>Common Issues and Troubleshooting<\/h2>\n<h3>Error 0x807800C5: The backup storage location is not valid<\/h3>\n<p>This usually means the backup destination is the same volume as the source, or WSB doesn&#8217;t have write access to the network share. Verify the destination is a different volume or UNC path. If it&#8217;s a network share, confirm the computer account has write permissions, not just the user account.<\/p>\n<h3>VSS Error: Volume Shadow Copy Service error \u2014 Unexpected error calling routine<\/h3>\n<p>VSS errors are annoyingly common and the event log messages are rarely helpful. The most frequent cause is a corrupted VSS provider or a third-party application holding VSS locks (antivirus software is a frequent offender). Start here:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-6\"><code class=\"\" data-line=\"\">vssadmin list writers\nnet stop vss\nnet stop swprv\nnet start swprv\nnet start vss<\/code><\/pre>\n<\/div>\n<p>If writers show a <strong>Failed<\/strong> state, re-registering the VSS DLLs often resolves it. Search Microsoft&#8217;s KB for the specific writer name that&#8217;s failing \u2014 each application (SQL, Exchange, Hyper-V) has its own fix.<\/p>\n<h3>Backup Job Runs But No Files Are Created<\/h3>\n<p>Check the Windows Server Backup event log under <strong>Applications and Services Logs &gt; Microsoft &gt; Windows &gt; Backup<\/strong>. The backup may have completed with warnings rather than errors, and the output location may have been redirected. Also confirm Task Scheduler actually fired the job \u2014 look under <strong>Task Scheduler Library<\/strong> for the last run time and result code.<\/p>\n<h3>&#8220;The system cannot find the path specified&#8221; During Recovery<\/h3>\n<p>This happens when the backup catalog is corrupted or the version identifier passed to <code class=\"\" data-line=\"\">wbadmin<\/code> doesn&#8217;t match an available backup. Run <code class=\"\" data-line=\"\">wbadmin get versions<\/code> to confirm the exact version string, and check whether the backup catalog needs rebuilding:<\/p>\n<div class=\"ht-code-snippet\"><button class=\"ht-code-snippet__copy\" type=\"button\" aria-label=\"Copy code\"><\/button><span class=\"ht-code-snippet__feedback\">Copied to clipboard<\/span><\/p>\n<pre class=\"ht-code-snippet__code\" id=\"code-block-7\"><code class=\"\" data-line=\"\">wbadmin delete catalog -quiet\nwbadmin get versions -backupTarget:\\backupserverwinbackups<\/code><\/pre>\n<\/div>\n<p>\ud83d\udcdd Note: Deleting the catalog only removes the local index. Your actual backup data on the destination is not affected.<\/p>\n<h3>Scheduled Backup Stops Running After a Password Change<\/h3>\n<p>If the scheduled task runs under a user account and that account&#8217;s password changed, the task will silently fail. Update the stored credentials in Task Scheduler, or switch the task to run as SYSTEM with proper share permissions configured on the network side.<\/p>\n<h2>Additional Recommendations<\/h2>\n<p>In my experience, the most common backup failure isn&#8217;t a technical one \u2014 it&#8217;s a backup that was set up correctly and then never verified. Schedule a monthly test restore to a non-production path and confirm the files are readable. A backup job that logs &#8220;Success&#8221; but produces unusable data is worse than no backup at all, because it gives false confidence.<\/p>\n<p>If you&#8217;re running a Host &amp; Tech <a href=\"https:\/\/www.hostandtech.com\/dedicated\/\">Dedicated Server<\/a> with Windows, I&#8217;d recommend storing backups off-server entirely \u2014 either to a network share on a separate system or to a cloud storage target mounted as a network drive. Local-only backups don&#8217;t protect you against disk controller failures or ransomware, both of which are real risks on production machines.<\/p>\n<p>For critical workloads, pair WSB with application-level backups. SQL Server has its own backup system; don&#8217;t rely solely on VSS to catch it. Same applies to IIS configuration \u2014 export your IIS config separately using <code class=\"\" data-line=\"\">appcmd<\/code> or the IIS Manager export feature.<\/p>\n<div class=\"ht-faq-section\">\n<h2>Frequently Asked Questions<\/h2>\n<div class=\"ht-faq-item\">\n<h3 class=\"ht-faq-question\">How do I check if Windows Server Backup is installed?<\/h3>\n<div class=\"ht-faq-answer\">\n<p>Open PowerShell as Administrator and run <code class=\"\" data-line=\"\">Get-WindowsFeature -Name Windows-Server-Backup<\/code>. If the Install State shows &#8220;Installed&#8221;, you&#8217;re good. If it shows &#8220;Available&#8221;, it&#8217;s not installed yet \u2014 run <code class=\"\" data-line=\"\">Install-WindowsFeature -Name Windows-Server-Backup<\/code> to add it.<\/p>\n<\/div>\n<\/div>\n<div class=\"ht-faq-item\">\n<h3 class=\"ht-faq-question\">How often should I back up a Windows Server?<\/h3>\n<div class=\"ht-faq-answer\">\n<p>For production servers, daily is the minimum \u2014 twice daily if you&#8217;re running a database or an application with heavy write activity. The right frequency depends on how much data you can afford to lose. If losing four hours of transactions is acceptable, once daily is fine. If it&#8217;s not, back up more often.<\/p>\n<\/div>\n<\/div>\n<div class=\"ht-faq-item\">\n<h3 class=\"ht-faq-question\">Can I restore a Windows Server backup to different hardware?<\/h3>\n<div class=\"ht-faq-answer\">\n<p>Yes, bare-metal recovery supports dissimilar hardware restores, but it&#8217;s not always smooth. Windows will attempt to inject drivers during recovery, but if the new hardware has a storage controller with no inbox driver, the restore may fail to boot. I&#8217;d recommend testing this before you actually need it. Having a WinPE environment with the correct storage drivers preloaded saves a lot of frustration.<\/p>\n<\/div>\n<\/div>\n<div class=\"ht-faq-item\">\n<h3 class=\"ht-faq-question\">Does Windows Server Backup back up SQL Server databases properly?<\/h3>\n<div class=\"ht-faq-answer\">\n<p>It does capture SQL Server data files via VSS if SQL VSS Writer is functioning correctly. However, using <code class=\"\" data-line=\"\">-vssFull<\/code> truncates SQL transaction logs as a side effect \u2014 which can break your SQL log backup chain. If you have SQL Server Agent jobs managing log backups, use <code class=\"\" data-line=\"\">-vssCopy<\/code> instead, and keep a separate SQL-native backup strategy in place.<\/p>\n<\/div>\n<\/div>\n<div class=\"ht-faq-item\">\n<h3 class=\"ht-faq-question\">How do I verify my Windows Server backup actually worked?<\/h3>\n<div class=\"ht-faq-answer\">\n<p>Run <code class=\"\" data-line=\"\">wbadmin get status<\/code> immediately after a backup job, or check the event log under Applications and Services Logs &gt; Microsoft &gt; Windows &gt; Backup. A clean backup shows Event ID 4 with a success message. Better yet, periodically do a test file restore to a different path and confirm the data is intact and readable \u2014 log entries alone don&#8217;t guarantee a usable backup.<\/p>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>A server without a working backup is just a countdown timer. This guide walks you through setting up Windows Server Backup, scheduling automated jobs, and actually restoring data when things go wrong \u2014 because a backup you&#8217;ve never tested isn&#8217;t a backup.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[84],"tags":[595,592,596,593,591,594,597,414],"class_list":["post-217","post","type-post","status-publish","format-standard","hentry","category-windows-server","tag-bare-metal-recovery","tag-server-recovery","tag-vss","tag-wbadmin","tag-windows-backup","tag-windows-server-backup","tag-windows-server-backup-and-recovery","tag-windows-server-2022"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Windows Server Backup and Recovery: A Complete Setup Guide<\/title>\n<meta name=\"description\" content=\"Learn how to configure Windows Server backup and recovery using WSB and wbadmin. Step-by-step guide covering scheduling, bare-metal recovery, and common errors.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Windows Server Backup and Recovery: A Complete Setup Guide\" \/>\n<meta property=\"og:description\" content=\"Learn how to configure Windows Server backup and recovery using WSB and wbadmin. Step-by-step guide covering scheduling, bare-metal recovery, and common errors.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Host And Tech knowledge base\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/stshostandtech\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-03T06:13:35+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@stshostandtech\" \/>\n<meta name=\"twitter:site\" content=\"@stshostandtech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#\\\/schema\\\/person\\\/b6fa79c48ddaba71af32e395c5b017ee\"},\"headline\":\"Windows Server Backup and Recovery: A Complete Setup Guide\",\"datePublished\":\"2026-06-03T06:13:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/\"},\"wordCount\":1825,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#organization\"},\"keywords\":[\"bare-metal recovery\",\"server recovery\",\"vss\",\"wbadmin\",\"windows backup\",\"windows server backup\",\"Windows server backup and recovery\",\"windows-server-2022\"],\"articleSection\":[\"Windows Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/\",\"url\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/\",\"name\":\"Windows Server Backup and Recovery: A Complete Setup Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#website\"},\"datePublished\":\"2026-06-03T06:13:35+00:00\",\"description\":\"Learn how to configure Windows Server backup and recovery using WSB and wbadmin. Step-by-step guide covering scheduling, bare-metal recovery, and common errors.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/windows-server\\\/windows-server-backup-and-recovery-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Windows Server Backup and Recovery: A Complete Setup Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/\",\"name\":\"Host And Tech knowledge base\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#organization\",\"name\":\"Host And Tech knowledge base\",\"url\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/logo-dark.png\",\"contentUrl\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/logo-dark.png\",\"width\":1134,\"height\":395,\"caption\":\"Host And Tech knowledge base\"},\"image\":{\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/stshostandtech\",\"https:\\\/\\\/x.com\\\/stshostandtech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/#\\\/schema\\\/person\\\/b6fa79c48ddaba71af32e395c5b017ee\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa1edac8bbadb442e059a5b65ad45a3b2e3ce689202373b96e3e567517ae4b39?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa1edac8bbadb442e059a5b65ad45a3b2e3ce689202373b96e3e567517ae4b39?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/aa1edac8bbadb442e059a5b65ad45a3b2e3ce689202373b96e3e567517ae4b39?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/hostandtech.com\\\/kb\"],\"url\":\"https:\\\/\\\/hostandtech.com\\\/kb\\\/author\\\/admin_fjj7qydm\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Windows Server Backup and Recovery: A Complete Setup Guide","description":"Learn how to configure Windows Server backup and recovery using WSB and wbadmin. Step-by-step guide covering scheduling, bare-metal recovery, and common errors.","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:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/","og_locale":"en_US","og_type":"article","og_title":"Windows Server Backup and Recovery: A Complete Setup Guide","og_description":"Learn how to configure Windows Server backup and recovery using WSB and wbadmin. Step-by-step guide covering scheduling, bare-metal recovery, and common errors.","og_url":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/","og_site_name":"Host And Tech knowledge base","article_publisher":"https:\/\/www.facebook.com\/stshostandtech","article_published_time":"2026-06-03T06:13:35+00:00","author":"admin","twitter_card":"summary_large_image","twitter_creator":"@stshostandtech","twitter_site":"@stshostandtech","twitter_misc":{"Written by":"admin","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/#article","isPartOf":{"@id":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/"},"author":{"name":"admin","@id":"https:\/\/hostandtech.com\/kb\/#\/schema\/person\/b6fa79c48ddaba71af32e395c5b017ee"},"headline":"Windows Server Backup and Recovery: A Complete Setup Guide","datePublished":"2026-06-03T06:13:35+00:00","mainEntityOfPage":{"@id":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/"},"wordCount":1825,"commentCount":0,"publisher":{"@id":"https:\/\/hostandtech.com\/kb\/#organization"},"keywords":["bare-metal recovery","server recovery","vss","wbadmin","windows backup","windows server backup","Windows server backup and recovery","windows-server-2022"],"articleSection":["Windows Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/","url":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/","name":"Windows Server Backup and Recovery: A Complete Setup Guide","isPartOf":{"@id":"https:\/\/hostandtech.com\/kb\/#website"},"datePublished":"2026-06-03T06:13:35+00:00","description":"Learn how to configure Windows Server backup and recovery using WSB and wbadmin. Step-by-step guide covering scheduling, bare-metal recovery, and common errors.","breadcrumb":{"@id":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hostandtech.com\/kb\/windows-server\/windows-server-backup-and-recovery-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hostandtech.com\/kb\/"},{"@type":"ListItem","position":2,"name":"Windows Server Backup and Recovery: A Complete Setup Guide"}]},{"@type":"WebSite","@id":"https:\/\/hostandtech.com\/kb\/#website","url":"https:\/\/hostandtech.com\/kb\/","name":"Host And Tech knowledge base","description":"","publisher":{"@id":"https:\/\/hostandtech.com\/kb\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hostandtech.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hostandtech.com\/kb\/#organization","name":"Host And Tech knowledge base","url":"https:\/\/hostandtech.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostandtech.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/hostandtech.com\/kb\/wp-content\/uploads\/2026\/05\/logo-dark.png","contentUrl":"https:\/\/hostandtech.com\/kb\/wp-content\/uploads\/2026\/05\/logo-dark.png","width":1134,"height":395,"caption":"Host And Tech knowledge base"},"image":{"@id":"https:\/\/hostandtech.com\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/stshostandtech","https:\/\/x.com\/stshostandtech"]},{"@type":"Person","@id":"https:\/\/hostandtech.com\/kb\/#\/schema\/person\/b6fa79c48ddaba71af32e395c5b017ee","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/aa1edac8bbadb442e059a5b65ad45a3b2e3ce689202373b96e3e567517ae4b39?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/aa1edac8bbadb442e059a5b65ad45a3b2e3ce689202373b96e3e567517ae4b39?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/aa1edac8bbadb442e059a5b65ad45a3b2e3ce689202373b96e3e567517ae4b39?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/hostandtech.com\/kb"],"url":"https:\/\/hostandtech.com\/kb\/author\/admin_fjj7qydm\/"}]}},"_links":{"self":[{"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/posts\/217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/comments?post=217"}],"version-history":[{"count":0,"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/posts\/217\/revisions"}],"wp:attachment":[{"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/media?parent=217"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/categories?post=217"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostandtech.com\/kb\/wp-json\/wp\/v2\/tags?post=217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}