You can enable folder creation on a list in SharePoint 2010 using PowerShell. Simply store an instance of an SPList Object, set the EnableFolderCreation property to $true, and update the SPList object.
PS > $spWeb = Get-SPWeb http://sp01/site
PS > $spList = $spWeb.GetList("http://sp01/site/Lists/MyList")
PS > $spList.EnableFolderCreation = $true
PS > $spList.Update()
ReTweet this Tip!
Posted
Feb 16 2012, 06:00 AM
by
sos