Welcome to the navigation

Laborum, dolor adipisicing laboris eiusmod culpa aute nisi quis sunt labore in anim ullamco mollit occaecat sit ex enim id reprehenderit aliqua, non dolore dolore. Occaecat est dolor nostrud lorem tempor eiusmod ut in dolor excepteur ullamco ad aliqua, ipsum non sit do aute et eu sunt ex aliquip exercitation

Yeah, this will be replaced... But please enjoy the search!

Enable SharePoint document conversions in PowerShell

Some of the document management features in SharePoint require certain features to be enabled.

I'd advice any developer, specially SharePoint developers, to learn how to administrer these settings by PowerShell. In this case here is How it is done.

Enable the DocumentConversions functionality

$app = Get-SPWebApplication http://site
$app.DocumentConversionsEnabled = 1
$app.Update()