Saving a Site as a Template: ‘Failure decompressing data from a cabinet file’ Error Workaround

I was trying to save a site as a template today including the content, and I got the error ‘Failure decompressing data from a cabinet file’.

I found a workaround on Ragav Jagannathan’s site: http://ragavj.blogspot.com/2008/02/failure-decompressing-data-from-cabinet.html

…This error "Failure decompressing data from a cabinet file" can be avoided by using the stsadm command line tool of MOSS 2007 and using the "nofilecompression" attribute.For example to export a site template, you would use something like this:

  • stsadm.exe -o export -url http://intranet/test -includeusersecurity -nofilecompression -filename C:\backup

Once you finish your export use the stsadm import command with the same nofilecompression attribute. For example:

  • stsadm.exe -o import -url http://intranet/test -includeusersecurity -nofilecompression -filename C:\backup

Alternatively, you can change the maximum size allowed for a template file:

The standard template size (by default) is set to a max of 10Mb, so it could be failing on this. The following STSADM command allows you to set the template size to approx. 150Mb, though I’ve never tried a template quite that large before! I believe the max is 500Mb. Good luck.

stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 151200000

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.