384 - ESE: files with extended attributes skipped

Modified on Mon, 21 Jul at 12:57 PM

Symptom

When backing up using the Enterprise Server Edition (ESE) the following error messages are seen for one or more files:

WARN  : 12:46:16 Unsupported file entry F:\Data\Amity Island\Shark Reports\Chief Brody.pdf, 
attributes: 100

ERROR : 12:46:16 Skipping unknown entry F:\Data\Amity Island\Shark Reports\Chief Brody.pdf

Note: The actual attributes reported may differ. The "100" value indicates the "temporary" attribute.

 

Cause

Extended file attributes cannot be read in the current version of ESE in some scenarios. Files are created with different extended attributes set by some applications. More detail of Windows file attributes can be found in this article on Microsoft's knowledge base.

 

Solution

Change the file attributes using PowerShell and the following commands:

Get-childitem D:\Data -recurse | ForEach-Object -process {if (($_.attributes -band 0x100) 
-eq 0x100) {$_.attributes = ($_.attributes -band 0xFEFF)}}

Replace "D:\Data" with the appropriate file path, and "0x100" in both locations with the appropriate attribute that you wish to remove.

See this blog for more.

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article