Hi All,
I have one problem with increasing file size limit for SP 2013
I installed SharePoint Online Management Shell than tried to do script where I took from internet
error is: "Microsoft,Sharepoint.PowerShell is not installed on this computer"
unfortunately I can`t solve itwhere I can take and how install this library I do not know
I tryed to use this script for changing limit size:
-----------------------
Connect-SPOService -Url
https://xxxxxxx-admin.sharepoint.com
-credential Admin@xxxxxxx.microsoftonline.com
-credential Admin@xxxxxxx.microsoftonline.com
get-PSSnapin -Registered
Add-PSSnapin
Microsoft.SharePoint.Powershell
Add-PSSnapin
Microsoft.SharePoint.Powershell
$s = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$s.ClientRequestServiceSettings.MaxReceivedMessageSize = 139715200
$s.ClientRequestServiceSettings.MaxParseMessageSize = 139715200
$s.Update()
$s.ClientRequestServiceSettings.MaxReceivedMessageSize = 139715200
$s.ClientRequestServiceSettings.MaxParseMessageSize = 139715200
$s.Update()
Disconnect-SPOService