Change the maximum indexed file size in Search Sharepoint 2013

Közzététel dátuma: 2014.01.24. 15:04:25

When you have "This item was partially parsed. The item has been truncated in the index because it exceeds the maximum size" you may need to increase the indexed file size.

$sps = Get-SPEnterpriseSearchServiceApplication

$sps.GetProperty("MaxDownloadSize")

64

As you can see, the default size is 64mb. All files larger than this will be skipped.

If you want to change it use the following command:

$sps.SetProperty("MaxDownloadSize",1024)

$sps.Update()

Restart-Service osearch15