In the world of administration, there is a saying:
“Admins fall into two categories: those who haven’t yet been making backups, and those who already make them.”
You’re going into an MSP (outsourcing), and there client data is sacred. If a server goes down — that’s bad, but if data is lost and can’t be recovered — that’s lawsuits and bankruptcy. Let’s review the “Gold Standard” and implement it in your lab.
Part 1. Theory: The 3-2-1 Rule
This is the foundation that you must know by heart. If someone asks: “What’s the right way to do backups?”, you answer with this formula. Rule essence: To sleep soundly, you must have:
- 3 copies of data (1 main copy you work with + 2 spare copies).
- 2 different media (e.g., files on the server hard drive, copy on NAS storage or tape). Why? If a ransomware virus destroys the server’s file system, it shouldn’t be able to reach the NAS.
- 1 off-site copy (Offsite). That’s the cloud (Azure/AWS) or a physical drive that the director takes home. Why? In case of fire, flood, or theft of servers from the office. Modern addition (3-2-1-1-0): Nowadays an Immutable copy is added. This is a backup that cannot be deleted or overwritten for X days, even if you’re a super-admin. This is the only protection against hackers who’ve broken into the admin console.
Part 2. Tools: Veeam Backup & Replication
In Austria and Germany in the Windows/VMware environment, Veeam (pronounced “Veem”) is the de-facto standard.
- It’s the “Mercedes” of the backup world.
- It can back up an entire virtual machine. If a server dies, you press a button and in 2 minutes it runs straight from the backup.
- For job interviews: Just say: “I know the 3-2-1 theory and have heard that Veeam is the industry standard. In my lab I practiced with Windows Server Backup to understand the principle.”
Part 3. Practice: Your First Disaster Recovery
We won’t install heavy Veeam on VirtualBox (it needs a SQL database and lots of memory). We’ll use the built-in Windows Server Backup tool. It’s simple, reliable, and available everywhere. Scenario: You accidentally deleted a folder with important documents. You need to restore it.
Step 1: Preparing the “Repository” (Backup Repository)
Backing up drive C: to drive C: is silly (if the drive fails, everything is lost). We need a second drive.
- Shut down your Windows Server.
- In VirtualBox open the Server settings → Storage.
- Click the “Add hard disk” icon (next to the SATA controller).
- Create a new disk (Create):
- Size: 10 GB (enough for the test).
- Type: VDI.
- Start the Server.
- Inside Windows press
Win + X→ Disk Management. - It will ask to initialize the disk (GPT) → OK.
- Create a simple volume (New Simple Volume) → Assign the letter B: (Backup).
Step 2: Installing “Windows Server Backup”
This feature is disabled by default.
- Open Server Manager → Add Roles and Features.
- Click Next until you reach the Features section. Don’t confuse with Roles!
- Find Windows Server Backup in the list (at the bottom).
- Check the box → Install.
Step 3: Creating a Backup (Backup Once)
- Open Tools → Windows Server Backup.
- In the right menu: Backup Once…. In reality we’d set up a Schedule, but now we need it fast.
- Backup Options: Different options → Next.
- Backup Configuration: Custom.
- We don’t want to back up the entire server for 2 hours, just a folder.
- Select Items: Click Add Items.
- Find your folder
C:\CompanyData(the one we shared for drive Z:). Select it.
- Find your folder
- Destination Type: Local drives.
- Select Destination: Select our new drive B:.
- Click Backup. Watch the percentage progress. When it says “Completed”, the copy is created.
Step 4: Disaster 😱
Imagine Hans Müller accidentally deleted a report.
- Go to folder
C:\CompanyData. - Create a text file there
ImportantReport.txt. - DELETE it (Shift + Delete). The file is gone. The Recycle Bin is empty.
Step 5: Recovery 🦸♂️
- Return to Windows Server Backup.
- Right menu: Recover….
- This server → Next.
- Select date (today) → Next.
- Recovery Type: Files and folders.
- Expand the folder tree and find your deleted file. Select it.
- Specify Recovery Options: Original location.
- Click Recover.
Go to folder
C:\CompanyData. Is the file back?