PDF Extension Added to Search Application best practices report by SPDocKit determines whether the PDF extension is added to the Search Service Application.
This check determines whether the PDF extension is added to the Search Service Application. If the PDF extension is not added to the Search Service Application File Types list, the search crawl component won’t crawl PDF documents and they won’t be available in the search results.
Explanation
SharePoint 2007 and SharePoint 2010 must be configured additionally to support crawling PDF documents. One of the configuration tasks is adding the PDF file extension to the File Types list in the Search Service Application. Search will only process the file extensions included in this list.
Solution
Verify that the File Types list includes PDF file extension. For SharePoint 2010, go to Central Administration > Application Management > Manage Service Applications. On the Manage Service Applications page, select the Search Service Application and click Manage. On the Search Administration page, click File Types. If PDF file extension is not present in the File Types list, click New File Type, type pdf and click OK.
If you would like to automate this configuration, you can do so using the script below:
clsfunctionGet-FileFormatDate {param( [DateTime]$Date = [DateTime]::now )return $Date.ToUniversalTime().toString( "yyyy-MM-dd_hh-mm-ss" )}if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) { Add-PSSnapin Microsoft.SharePoint.PowerShell; }$continue = Read-Host "This script will change SharePoint configuration files, registry and will restart your IIS! Would you like to continue (Y/N)"
if($continue -eq "Y"){Write-Host-ForegroundColorYellow"Configuring PDF Icon..." $SharePointRoot ="C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions14"; $DocIconFolderPath ="$SharePointRootTEMPLATEXML"; $DocIconFilePath ="$DocIconFolderPathdocicon.xml";Write-Host"Creating backup of DocIcon.xml file..." $dateNow =Get-FileFormatDate $backupFile ="$DocIconFolderPathBackup_DocIcon_"+ $dateNow +".xml"Copy-Item $DocIconFilePath $backupFile $pdfIcon ="pdficon_small.gif";while((Get-Item $pdfIcon) -eq $null) { Read-Host "$pdfIcon is missing. Download it from http://www.adobe.com/misc/linking.html and place it to this folder. Press any key to continue...";
}Copy-Item $pdfIcon "$SharePointRootTemplateImages"; $pdfNode = select-xml -path $DocIconFilePath -xpath "/DocIcons/ByExtension/Mapping[@Key='pdf']" | select-object -expandProperty Node
if($pdfNode-eq $null) { $xml=1 (Get-Content $DocIconFilePath) $a = $xml.selectSingleNode("/DocIcons/ByExtension") $addnode = $xml.createElement("Mapping") $a.AppendChild($addNode) $keyAttribute = $xml.CreateAttribute("Key") $keyAttribute.set_Value("pdf") $addNode.SetAttributeNode($keyAttribute) $valueAttribute = $xml.CreateAttribute("Value") $valueAttribute.set_Value("pdficon_small.gif") $addNode.SetAttributeNode($valueAttribute) $xml.Save($DocIconFilePath) }Write-Host-ForegroundColorYellow"Configuring search crawl extension..." $searchServiceApp =Read-Host"Type the name of your search service application (e.g. Search Service Application)" $searchApplicationName =Get-SPEnterpriseSearchServiceApplication $searchServiceApp if($searchApplicationName -ne $null) {if(($searchApplicationName|Get-SPEnterpriseSearchCrawlExtension"pdf") -eq $null) { $searchApplicationName |New-SPEnterpriseSearchCrawlExtension"pdf" } }Write-Host-ForegroundColorYellow"Updating registry..." if((Get-Item -Path Registry::"HKLMSOFTWAREMicrosoftOffice Server14.0SearchSetupFilters.pdf") -eq $null) { $item =New-Item-PathRegistry::"HKLMSOFTWAREMicrosoftOffice Server14.0SearchSetupFilters.pdf" $item |New-ItemProperty-NameExtension-PropertyTypeString-Value"pdf" $item |New-ItemProperty-NameFileTypeBucket-PropertyTypeDWord-Value1 $item |New-ItemProperty-NameMimeTypes-PropertyTypeString-Value"application/pdf" } if((Get-Item -Path Registry::"HKLMSOFTWAREMicrosoftOffice Server14.0SearchSetupContentIndexCommonFiltersExtension.pdf") -eq $null)
{ $registryItem = New-Item -Path Registry::"HKLMSOFTWAREMicrosoftOffice Server14.0SearchSetupContentIndexCommonFiltersExtension.pdf";
$registryItem | New-ItemProperty -Name "(default)" -PropertyType String -Value "{E8978DA6-047F-4E3D-9C78-CDBE46041603}"
} [System.Environment]::SetEnvironmentVariable("PATH", $Env:Path + ";C:Program FilesAdobeAdobe PDF iFilter 9 for 64-bit platformsbin", "Machine")
Write-Host-ForegroundColorYellow"Restarting SharePoint Foundation Search Service..."Restart-ServiceSPSearch4Write-Host-ForegroundColorYellow"Restarting SharePoint Search Service..."Restart-ServiceOSearch14Write-Host-ForegroundColorYellow"Restarting IIS..."iisresetWrite-Host-ForegroundColorGreen"Installation completed..."}
If you use Foxit PDF iFilter, you can find the installation steps on the following link: Foxit PDF iFilter.
SharePoint 2013 includes native support for crawling and indexing PDF documents. No further action should be required. If you get an error as a result of this check, verify that the PDF file type is included in the File Types list in the Search Service Application configuration. You can find the list in the same location as in SharePoint 2010.
Additional information
Additional information can be found in the following article: