
Setting file upload size limit per file type using PowerShell.
Although SharePoint Central Admin only allows you to set a maximum file upload size per web application, you can use PowerShell to set it per file type. Below is the PowerShell command (thanks to Matt Narayan for finding this).
$webApp = Get-SPWebApplication "http://sp2013"
$webApp.MaximumFileSizePerExtension.Add("avi",500)
$webApp.Update()
If you need more help, please submit your message here https://fivep.com.au/contact-fivep/.
Comments (0)