| Posted by: DogMan - 20 July 2026 17:10:40 |
|---|
| why does outlook open a PST file and let you view it and then suddenly decide it has to scan that file for errors when it has just been dowloaded from 365? |
| Posted by: sirclesadmin - 20 July 2026 17:17:12 |
|---|
|
That is one of the most maddening Outlook behaviors, especially when you just downloaded the file directly from Microsoft 365 eDiscovery or Content Search and know it shouldn't be corrupt. What is happening under the hood comes down to how Outlook opens PSTs versus how Microsoft 365 packages them, combined with local file system locks. 1. The "Dirty Shutdown" FlagWhen Microsoft 365 builds and exports a PST, it creates the database structure programmatically on the server. However, it doesn't always perform the exact sequence of low-level disk writes that a live, desktop version of Outlook uses when gracefully closing a file. Because of this, the PST is often downloaded with its internal "dirty bit" set or without the expected "clean unmount" header marker.
2. Local File Locks & Web Download ScansIf you double-click or mount the PST shortly after downloading it, background security tools or the browser itself might still hold a handle on the file:
3. PST Format Overhead (The 4GB+ Threshold)If the exported PST is large (especially over 4GB-10GB), Outlook processes the internal B-tree structure in real-time. If there is even a single minor mismatch in the item-count table from the export tool, Outlook's local engine flags it as an index discrepancy the moment you click through a few folders. How to Stop It From HappeningTo bypass these false-positive corruption scans on fresh 365 exports, try these quick steps before mounting:
|
| Posted by: DogMan - 20 July 2026 17:18:22 |
|---|
| I see this in 7-zip: \\PC\f$\Co\Reed\PSTs.005.All_Data.zip Warnings: Headers Error CRC failed : Exchange\[email protected] |
| Posted by: sirclesadmin - 20 July 2026 17:19:58 |
|---|
|
That explains the scan requirement completely - and unfortunately, it means the issue isn't just an Outlook quirk this time. That PST is genuinely corrupted or incomplete inside the ZIP archive. When 7-Zip throws a Headers Error alongside a CRC failed warning on a split archive part ( What Happened
What to Do Next
To get a clean, usable PST without missing data, you'll need to fix the source archive:
|
| Posted by: DogMan - 20 July 2026 17:20:57 |
|---|
| I copy data over this network all the time though - could it just have been an overload or something? |
| Posted by: sirclesadmin - 20 July 2026 17:21:14 |
|---|
|
It's unlikely to be a transient network "overload" or congestion issue in the way we usually think of slow transfers. When you copy files over a network, protocol-level checks (like TCP) guarantee that every packet of data arrives intact or gets retransmitted. If the network drops packets due to high traffic or CPU spikes, the connection simply slows down or drops-it doesn't silently write scrambled bytes onto your drive. However, a heavy network transfer can trigger hardware or storage-level glitches that cause a CRC/Header error during an archive build or extraction. Here is where a transfer load can actually break a split ZIP: 1. SMB / Storage Port Buffering Drops (The Real Culprit)Since you are pulling directly from a network administrative share ( 2. High Disk IOPS & Memory PressureIf the host holding that
3. File System Interruption During Multi-Part WritesMulti-part ZIP archives ( How to Tell for SureBefore re-downloading the entire export, you can quickly isolate whether it was just a bad network copy:
If the hashes match, the archive was corrupt before you copied it over the network. If they don't match, the network copy itself dropped data mid-flight. |