“Fix Tech Daily helps you solve real-world IT problems, with daily tips on Windows, Office, networks, and devices.”
Wednesday, August 6, 2025
✅ 5. Implement Backup and Disaster Recovery on Windows Server 2022
🔹 Part 1: Install Windows Server Backup Feature
✅ Method A: GUI via Server Manager
-
Open Server Manager
-
Click Manage > Add Roles and Features
-
Choose Role-based or feature-based installation
-
Click Next until you reach Features
-
Check Windows Server Backup
-
Click Install
✅ Method B: PowerShell
powershellInstall-WindowsFeature -Name Windows-Server-Backup
🔹 Part 2: Schedule Automated Backups
✅ Step-by-Step (Windows Server Backup)
-
Open Windows Server Backup (Start Menu)
-
Click Local Backup > Backup Schedule
-
Wizard setup:
-
Select Full server or Custom (e.g., files, AD, VMs)
-
Set frequency: Daily or Weekly
-
Choose backup time
-
-
Choose backup destination:
-
Dedicated disk
-
Network Share
-
External USB
-
-
Confirm and finish
✅ Include in Custom Backup:
-
System State (for AD)
-
D:\Shares (client data)
-
Hyper-V folder (e.g.,
C:\ProgramData\Microsoft\Windows\Hyper-V
)
🔹 Part 3: Backup Storage Best Practices
-
🧩 Use external drive, NAS, or separate internal disk
-
🧳 Rotate drives weekly for offsite storage
-
🧱 Never back up to the same disk as the server OS
-
☁️ Consider tools like Azure Backup, Veeam, or Altaro
🔹 Part 4: Backup Active Directory (System State)
✅ Method A: PowerShell
powershellwbadmin start systemstatebackup -backuptarget:D:\
✅ Method B: GUI
-
Open Windows Server Backup
-
Click Backup Once > Custom
-
Select System State
-
Choose backup location
-
Start the backup
🔹 Part 5: Backup Hyper-V Virtual Machines
✅ Method A: Export VM (Manual)
-
Open Hyper-V Manager
-
Right-click the VM > Export
-
Choose destination (e.g.,
E:\Backups\Client1-VM
) -
Export includes .VHDX, config, and snapshot
✅ Method B: Schedule VM Backup
-
Open Windows Server Backup
-
Choose Custom > Add Items
-
Include folders containing VM files
-
Usually:
C:\ProgramData\Microsoft\Windows\Hyper-V\
-
🔹 Part 6: Test Restore Procedures
✅ File Restore
-
Open Windows Server Backup > Recover
-
Select backup location and date
-
Choose Files and Folders
-
Restore to original or new location
✅ Active Directory Restore (System State)
-
Reboot into Directory Services Restore Mode (DSRM)
-
Log in with DSRM password
-
Run:
powershellwbadmin start systemstaterecovery -version:<date> -backuptarget:<drive> -quiet
-
Reboot after restore
✅ Hyper-V VM Restore
-
Open Hyper-V Manager
-
Click Import Virtual Machine
-
Browse to exported VM folder
-
Follow the wizard to import
-
Start the VM and verify
✅ Recommended Backup Frequency
Data Type | Frequency | Retention |
---|---|---|
System State (AD) | Weekly | 4 weeks |
Client Data | Daily | 30 days |
Hyper-V VMs | Weekly or Before Changes | 4–8 weeks |