The StoragePoint endpoint is using encryption and/or compression on externalized BLOB files. A database needed to be restored leaving some BLOBs orphaned, which had been externalized after the backup was created. These BLOBs need to be restored from the endpoint and added back to SharePoint.
If the files are encrypted and/or compressed, it is not a simple matter of retrieving them from the endpoint and re-uploading to StoragePoint. They first need to be decrypted and/or uncompressed.
a. Run the StoragePoint installer on a WFE or application server.
b. Click Advanced Options > Install StoragePoint PowerShell. A command window will launch that will register StoragePoint PowerShell on the server.
Get-DecryptUncompressBLOBFile
The command allows you to decrypt and/or uncompress a BLOB file that is no longer referenced in SharePoint. The following parameters may also be used:
Below are some examples:
Add-PSSnapin StoragePoint.PowershellCmdlets –erroraction SilentlyContinue Get-DecryptUncompressBLOBFile -InputFile "\\fs\sh\Blob1.docx.blob" -OutputFile "c:\blob1.docx" -Decrypt -Passphrase "myencryptionpassword"
Add-PSSnapin StoragePoint.PowershellCmdlets –erroraction SilentlyContinue Get-DecryptUncompressBLOBFile -InputFile "\\fs\sh\Blob2.docx.blob" -OutputFile "c:\blob2.docx" -Uncompress
Add-PSSnapin StoragePoint.PowershellCmdlets –erroraction SilentlyContinue Get-DecryptUncompressBLOBFile -InputFile "\\fs\sh\Blob3.docx.blob" -OutputFile "c:\blob3.docx" -Decrypt -Passphrase "myencryptionpassword" -Uncompress