Quick fix: Windows 11 doesn’t have a built-in “export settings” feature. Use Windows Backup (Settings → Accounts → Windows backup) to back up apps, preferences, credentials to your Microsoft account. For more control, use SettingsBackup (Microsoft Store) or export specific registry keys manually. To restore on a new PC, sign in with the same Microsoft account — settings sync automatically.
You want to save your Windows 11 configuration as a snapshot — preferences, app list, taskbar pins, network connections — then restore on another PC or after reinstall. Microsoft provides this via the Windows Backup feature, which syncs to your Microsoft account.
Affects: Windows 11 22H2 and later.
Fix time: ~10 minutes.
What causes this need
Without a backup, reinstalling Windows or moving to a new PC means re-configuring everything. Microsoft introduced Windows Backup (built on top of OneDrive) in Windows 11 22H2 to address this. It saves: app list, Microsoft Store app preferences, Wi-Fi passwords, theme, taskbar layout, mouse/display settings.
Method 1: Use Windows Backup (Microsoft account)
The standard route.
- Open Settings → Accounts → Windows backup.
- Sign in with Microsoft account if not already.
- Toggle on:
- OneDrive folder syncing — Desktop, Documents, Pictures.
- Remember my apps — Microsoft Store apps list.
- Remember my preferences — theme, language, accessibility, passwords.
- Click Back up.
- Settings are saved to your Microsoft account.
- To restore: sign in to a new Windows 11 PC with the same Microsoft account during OOBE setup. Pick Restore from PC option. Pick which backup to use.
- Settings, taskbar, app list will be applied. Microsoft Store apps reinstall from cloud.
- For Pro/Enterprise: Domain or Entra ID accounts have similar backup via Intune/Entra.
This is the standard Microsoft-supported way.
Method 2: Manual backup via registry export
For specific settings outside Windows Backup’s scope.
- Open Registry Editor (Win+R,
regedit). - Navigate to settings you want to back up. Common ones:
- File Explorer:
HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer - Taskbar:
HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 - Power:
HKLM\SYSTEM\CurrentControlSet\Control\Power - Desktop wallpaper:
HKCU\Control Panel\Desktop
- File Explorer:
- Right-click the key → Export. Save as .reg file.
- Store .reg files on external drive or cloud.
- To restore on new PC: double-click .reg file → allow merge. Log out and back in to apply.
- For multiple keys: write a batch script that exports each:
reg export "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer" explorer.reg /y. - Caution: registry-only restore can leave orphaned settings if Windows versions differ.
This is for granular control.
Method 3: Use third-party profile tool
For comprehensive backup.
- Install Windows Easy Transfer alternative: PCmover, Zinstall, or open-source FabsAutoBackup.
- These tools scan your system, package all settings + app data + documents into a single transfer file.
- Run on source PC. Pick what to include (settings, apps, files).
- Save backup file to external drive.
- On new PC: run same tool → Restore → pick backup file. Tool replays settings.
- For free tools: FreeFileSync can mirror specific folders (AppData) but doesn’t handle registry.
- For developer settings: install dotfiles approach — manage settings via Git. Tool like chezmoi on Windows manages JSON configs as a git repo.
- For corporate: Intune Configuration Profiles deploy settings to user PCs uniformly.
This is the most comprehensive.
How to verify the fix worked
- Settings → Accounts → Windows backup shows status: Last backed up: [recent time].
- For .reg backups: file exists, opens in text editor, shows expected entries.
- Restoration test: log into another PC with same MSA → settings, app pins, theme appear.
If none of these work
If Windows Backup doesn’t sync: OneDrive sign-in issue: re-sign-in to OneDrive. For corporate accounts: IT may disable backup. Check Group Policy. For limited OneDrive storage: free 5GB may not be enough for documents. Pay for more or unselect Documents/Pictures. For Windows 11 Home: some Pro-specific settings won’t back up. For incomplete restore: not all Win32 apps’ settings transfer; only Store apps and Windows preferences. For mass deployment: use Sysprep with answer file for new-PC fresh installs with predetermined config.
Bottom line: Use Settings → Accounts → Windows backup for Microsoft-supported sync. Manual registry .reg exports for granular settings. PCmover or similar for comprehensive app + settings migration.