sp-notes-blog
sp-notes-blog
SP Notes
2 posts
Don't wanna be here? Send us removal request.
sp-notes-blog · 13 years ago
Text
Change Upload File Size in SharePoint with Powershell
Use this PowerShell to update the max. file upload size (default = 50MB) for your SharePoint 2010 web application.
$siteUrl = siteURL
$SPSite = Get-SPSite | Where-Object {$_.Url -eq $siteUrl}
if($SPSite -ne $null)
{
  $SPSite.WebApplication.MaximumFileSize = 100
  $SPSite.WebApplication.Update()
}
$SPSite.Dispose()
*MaximumFileSize is in MBs
0 notes
sp-notes-blog · 14 years ago
Text
Syncing Content Types Across Farms
So I heard an interesting recommendation this week that says that a good way to keep your content types synced between your SharePoint farms such as Test, Stage, Production is to daisy chain your MMS services across those farms thus ensuring that your Content Types are always the same. 
So which direction would I go? Would I have Test publish to Stage and then Stage publish to Production? I guess it depends, right?
Well I'm not sold on this concept but I will consider it. I would be more inclined to use this method only on Stage and Production but I would still have to move/copy or otherwise promote my Content Types from Test upward.
6 notes · View notes