windows-server-backup

Automates Windows Server system state backups and disaster recovery using wbadmin and PowerShell.

1|Updated Jul 30, 2026
One-click install
npx skills add https://github.com/matrixNeo76/rustcopy --skill windows-server-backup-matrixneo76
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: windows-server-backup
Source: https://github.com/matrixNeo76/rustcopy/tree/main/.agents/skills/windows-server-backup
Command: npx skills add https://github.com/matrixNeo76/rustcopy --skill windows-server-backup-matrixneo76

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Windows Server administrators risk losing Active Directory state and critical volumes when making changes without verified backups, and manual backup procedures are error-prone and often skip destination checks. ## Core Features & Use Cases - System State Backup for AD: Runs wbadmin systemstatebackup before any Active Directory modification, with mandatory destination reachability pre-checks. - Scheduled Automatic Backups: Configures recurring backups with wbadmin enable backup and custom schedules across multiple volumes. - PowerShell Backup Policies: Builds manual backup jobs with New-WBPolicy, WBVolume, and WBBackupTarget for granular control. - Use Case: Before promoting a domain controller or modifying AD objects, run a verified system state backup to a network share, then enable a daily 01:00/13:00 backup schedule compliant with ISO 27001 A.17 retention requirements. ## Quick Start Ask the assistant to perform a system state backup of the domain controller to a network share and verify the result with Get-WBSummary before making AD changes.

Frequently Asked Questions about windows-server-backup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I backup Active Directory system state on Windows Server?▼

Run wbadmin start systemstatebackup with a reachable backup target after installing the Windows-Server-Backup feature. Always verify the destination with Test-Path first and confirm completion using Get-WBSummary.

How to schedule automatic Windows Server backups with wbadmin?▼

Use wbadmin enable backup with -addtarget for the destination, -include for volumes like C: and D:, and -schedule for times such as 01:00,13:00. This creates a recurring backup policy without manual intervention.

Why should I backup system state before making AD changes?▼

System state contains the Active Directory database, so a backup before modifications allows full recovery if changes corrupt AD. The skill enforces this as a mandatory step with destination pre-checks.

Can I backup Windows Server to a network share?▼

Yes, wbadmin supports network paths as backup targets, such as \\backupsrv\WindowsBackups. The skill requires verifying the share is reachable with Test-Path before starting any backup operation.

How often should Windows Server backup restores be tested?▼

Restore tests should run at least quarterly to comply with ISO 27001 A.17 backup policy requirements. The skill recommends 30-day retention alongside regular restore verification.