I'd like to enable folder creation on my SharePoint 2010 lists. Is it true that the easiest way to do this is with PowerShell?
I'd like to enable folder creation on my SharePoint 2010 lists. Is it true that the easiest way to do this is with PowerShell?
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.
http://secretsofsharepoint.com/cs/blogs/tips/archive/2011/05/13/enable-folder-creation-on-a-list.aspxCode:PS > $spWeb = Get-SPWeb http://sp01/site PS > $spList = $spWeb.GetList("http://sp01/site/Lists/MyList") PS > $spList.EnableFolderCreation = $true PS > $spList.Update()
“Your time is limited, so don’t waste it living someone else’s life,” Steve Jobs