Cloud House Technologies Logo
CloudHouse Technologies
HomeServicesProjectsBlogAbout UsCareersContact UsLogin
    Cloud House Technologies Logo
    CloudHouse Technologies
    HomeServicesProjectsBlogAbout UsCareersContact UsLogin

    How to Fix File History Stuck Preparing on Windows 10 (2026 Guide)

    Priya

    Content Writer & Researcher

    Last Updated: 1 July 2026
    🖥️

    Having trouble with Windows 10?

    Our certified experts can diagnose and fix your issue remotely — usually in under 60 minutes.

    🔧 Book Free DiagnosisCall NowWhatsApp
    🖥️12,400+PCs Fixed
    ⭐4.9★Google Rating
    ⚡<15 minAvg. Response
    🛡️ISO 27001Certified

    What Causes File History to Get Stuck

    File History is one of Windows 10's most reliable built-in backup tools — when it works. But many users encounter a frustrating situation where File History appears to hang indefinitely on the message "Preparing your files for backup." Understanding the root causes is the first step to fixing it for good.

    The most common culprits include:

    • Corrupted File History index (catalog): The catalog database that tracks which files have been backed up can become corrupted after a system crash, update, or abrupt disconnection of the backup drive.
    • Full or stale cache: Windows stores temporary backup metadata in %LocalAppData%\Microsoft\Windows\FileHistory. When this cache grows too large or becomes corrupted, the backup process stalls.
    • File History Service not running: The File History Service (fhsvc) may have stopped or failed to start, causing backups to silently freeze.
    • Drive connection or format issues: File History requires an NTFS-formatted drive. An incorrectly formatted, disconnected, or failing external drive triggers the stuck state.
    • Windows Update conflicts: Cumulative updates in early 2026 introduced a bug where the ProtectedUpToTime registry value becomes empty, breaking backup continuity.
    • Too many small files: Libraries containing millions of tiny files (like developer node_modules folders) can cause File History to appear stuck while it is actually scanning.

    Now let's go through each proven fix step by step.

    Fix 1: Clear the File History Cache

    A corrupted or oversized File History cache is the single most common reason backups hang at the "preparing" stage. Clearing it forces Windows to rebuild the index from scratch.

    1. Press Win + R, type services.msc, and press Enter.
    2. Scroll down to File History Service, right-click it, and select Stop. Leave the Services window open.
    3. Press Win + R again and run:
      %LocalAppData%\Microsoft\Windows\FileHistory
    4. Delete (or rename as a backup) the Configuration and Data sub-folders inside that directory.
    5. Return to Services, right-click File History Service, and select Start.
    6. Open Settings > Update & Security > Backup and run a new backup.

    You can also do this entirely from PowerShell (run as Administrator):

    Stop-Service -Name fhsvc -Force
    Remove-Item "$env:LOCALAPPDATA\Microsoft\Windows\FileHistory\Configuration" -Recurse -Force -ErrorAction SilentlyContinue
    Remove-Item "$env:LOCALAPPDATA\Microsoft\Windows\FileHistory\Data" -Recurse -Force -ErrorAction SilentlyContinue
    Start-Service -Name fhsvc

    After the cache is cleared, File History will re-scan your files on the next backup cycle. The first backup after clearing may take longer than usual — that is normal.

    Fix 2: Restart the File History Service

    Sometimes the File History Service (fhsvc) enters a stuck or error state without fully stopping. A clean restart resolves this without any data loss.

    1. Right-click the Start button and select Windows PowerShell (Admin).
    2. Run the following commands one by one:
    Stop-Service -Name fhsvc -Force
    Start-Service -Name fhsvc
    Get-Service -Name fhsvc

    The last command should show Status: Running. If it shows Stopped or StartPending indefinitely, check the event log for errors:

    Get-EventLog -LogName Application -Source "Microsoft-Windows-FileHistory-Core" -Newest 20

    You can also set the service to restart automatically after failures:

    1. In services.msc, double-click File History Service.
    2. Go to the Recovery tab.
    3. Set First failure, Second failure, and Subsequent failures all to Restart the Service.
    4. Click Apply then OK.

    Fix 3: Check External Drive Connection and Format

    File History has strict requirements for its backup destination. If the drive does not meet them, File History will appear to prepare indefinitely and never start.

    Requirements checklist:

    • The drive must be formatted as NTFS (exFAT and FAT32 are not supported).
    • The drive must have at least a few GB of free space remaining.
    • The drive must not be the same drive as your Windows system drive (C:).
    • USB hubs can cause intermittent disconnections — connect the drive directly to the PC.

    To check and fix the drive format from PowerShell (Admin):

    # List all drives and their file systems
    Get-Volume | Select-Object DriveLetter, FileSystem, SizeRemaining, Size
    
    # If your backup drive (e.g. E:) shows FAT32 or exFAT, reformat it:
    Format-Volume -DriveLetter E -FileSystem NTFS -NewFileSystemLabel "FileHistoryBackup" -Confirm:$false

    Warning: Formatting the drive erases all existing data on it. Back up any important files on that drive before running the format command.

    After reformatting, go to Settings > Update & Security > Backup > Add a drive and re-select the newly formatted drive.

    Fix 4: Run Windows Backup Troubleshooter

    Windows 10 includes a built-in troubleshooter that can detect and automatically fix common File History issues, including service misconfigurations and permission problems.

    1. Press Win + I to open Settings.
    2. Go to Update & Security > Troubleshoot > Additional troubleshooters.
    3. Scroll down and click Windows Backup, then click Run the troubleshooter.
    4. Follow the on-screen prompts and apply any fixes suggested.

    You can also launch the troubleshooter directly from PowerShell (Admin):

    msdt.exe /id WindowsBackupDiagnostic

    If the troubleshooter finds a VSS (Volume Shadow Copy Service) error, fix it with:

    net stop vss
    net start vss
    vssadmin list writers

    All VSS writers should show State: [1] Stable. If any writer shows a failed state, restart its associated service (for example, SQL Server VSS Writer or IIS VSS Writer).

    Fix 5: Disable and Re-enable File History

    A full toggle of File History — turning it completely off and back on — clears configuration flags, resets the backup schedule, and forces Windows to re-establish a fresh connection to the backup drive. This is particularly effective when previous fixes have not resolved the stuck state.

    1. Go to Settings > Update & Security > Backup.
    2. Under Back up using File History, click More options.
    3. Scroll to the bottom and click Stop using this drive. Confirm if prompted.
    4. Close and reopen Settings.
    5. Return to Backup and click Add a drive. Select your backup drive.
    6. Toggle Automatically back up my files to On.
    7. Click Back up now to trigger an immediate backup.

    To do this via PowerShell (Admin):

    # Disable File History
    fhmanagew.exe -cleanup 0
    
    # Reset and re-enable (adjust drive letter as needed)
    $fhConfig = "$env:LOCALAPPDATA\Microsoft\Windows\FileHistory\Configuration\Config"
    Remove-Item $fhConfig -Force -ErrorAction SilentlyContinue
    Start-Service fhsvc

    If File History was previously pointed at a network share or a drive that no longer exists, this reset is mandatory before pointing it at a new destination.

    Prevention Tips

    Once you have resolved the stuck backup issue, keep File History running reliably with these best practices:

    • Use a dedicated backup drive: A drive used only for File History avoids fragmentation and space conflicts.
    • Exclude large developer folders: Add folders like node_modules, .git, and virtual machine disk files to the File History exclusion list under More options > Exclude these folders. These can contain millions of tiny files that inflate scan times dramatically.
    • Set a retention policy: Under More options, change Keep my backups from Forever to 1 month or 3 months to prevent the backup drive from filling up.
    • Monitor drive health: Run chkdsk E: /f /r (replace E: with your backup drive letter) every few months to catch early drive failures.
    • Keep Windows updated: Microsoft regularly patches File History bugs. Stay current with cumulative updates via Settings > Windows Update.
    • Check backup logs regularly: Open Event Viewer > Applications and Services Logs > Microsoft > Windows > FileHistory-Core to catch silent failures before they become a problem.

    If you have been struggling with backup failures across multiple machines or need to set up a more robust enterprise backup strategy, Get Expert Windows 10 Support from our certified technicians — we resolve most issues remotely in under 60 minutes.

    FAQ

    Why does File History say "preparing your files for backup" for hours?

    This usually means File History is scanning a very large number of files, or its internal catalog (index) database has become corrupted. Clearing the cache folder at %LocalAppData%\Microsoft\Windows\FileHistory and restarting the File History Service (fhsvc) resolves the issue in most cases.

    Does clearing the File History cache delete my existing backups?

    No. The cache folder contains only temporary index and configuration data used by Windows to track what has been backed up. Your actual backed-up files are stored on your external or network drive and are not affected by clearing the cache.

    Can File History back up to a USB flash drive?

    Yes, but only if the flash drive is formatted as NTFS. Most USB flash drives ship formatted as FAT32 or exFAT, which File History does not support. Reformat the drive to NTFS first using Disk Management or the Format-Volume PowerShell command.

    File History is turned on but no backup has ever completed — what should I check?

    Start with three checks: (1) confirm the backup drive is NTFS-formatted and has free space, (2) verify the File History Service is running in services.msc, and (3) open Event Viewer and look for errors under Applications and Services Logs > Microsoft > Windows > FileHistory-Core. A VSS error or a "catalog corrupted" event in those logs points directly to the root cause.

    Is File History still available in Windows 11?

    Yes. File History is available in Windows 11, though Microsoft has been nudging users toward OneDrive and the newer Windows Backup app. File History remains fully functional in Windows 11 and can be accessed via Control Panel > System and Security > File History. The same fixes described in this guide apply to both Windows 10 and Windows 11.

    Get the Free Windows Troubleshooting Cheatsheet (PDF)

    25 common Windows errors with step-by-step fixes — printable, one page. Delivered to your inbox instantly.

    Running a business? Stop fighting PC issues alone.

    Our Managed IT Support plans cover every desktop and laptop in your office — unlimited fixes, proactive monitoring, and guaranteed response times.

    • 24×7 remote + onsite Windows support
    • Proactive patching to prevent crashes and BSODs
    • Backup, antivirus, and asset management included
    • Flat per-device pricing — no surprise bills
    See Pricing Plans →

    What our customers say

    “Screen went black the morning of a board meeting. CloudHouse had me back up in 12 minutes over a remote session. Lifesavers.”

    Priya R.

    Operations Manager

    “Moved our 38-machine office to their managed plan. Tickets resolved before staff even notice. Worth every rupee.”

    Rahul M.

    IT Lead

    Frequently Asked Questions

    This usually means File History is scanning a very large number of files, or its internal catalog database has become corrupted. Clearing the cache folder at %LocalAppData%\Microsoft\Windows\FileHistory and restarting the File History Service (fhsvc) resolves the issue in most cases.

    Book your free 15-minute diagnosis

    A certified technician will call you back within 15 minutes during business hours.

    Share this article

    Leave a Comment

    Comments (0)

    Loading comments...

    Need Windows 10 Help?

    CloudHouse Technologies offers remote support for all Windows 10 issues. Fast, reliable, expert help.

    Call Now — FreeWhatsApp Us

    Why CloudHouse?

    • ISO 27001:2022 certified
    • 12,400+ devices supported
    • 4.9★ on Google
    • Sub-15-minute response

    CloudHouse Technologies

    Innovative cloud solutions for modern businesses. We deliver cutting-edge technology with exceptional service.

    Contact Us

    CloudHouse Technologies Pvt.Ltd
    Special Economic Zone(SEZ),
    Infopark Thirissur,4B-15,
    Indeevaram,Nalukettu Road,
    Koratty, Kerala, India-680308
    0480-27327360
    info@cloudhousetechnologies.com

    Quick Links

    • Our Services
    • Gold Loan Software
    • About Us
    • Contact
    • Terms and Conditions
    • Privacy Policy
    ISO27001:2022
    Certified

    © 2026 CloudHouse Technologies Pvt.Ltd. All rights reserved.

    Back to top