Opening PDFs in Adobe Reader from SharePoint Document Library

Introduction

In this article, we will learn how we can open PDFs from the SharePoint document library directly in Adobe Reader, update the PDF, and then update it back to the SharePoint document library in SharePoint 2013 on-premises for Internet Explorer browser.

Pre-requisites

  • You must have Adobe Acrobat Reader installed.
  • You must have access to SharePoint 2013 central admin.

Steps

Follow the below steps to open PDF files in Adobe Reader client and update back in SharePoint after editing.

Step 1. Go to SharePoint 2013 central administration.

Step 2. Now select Application Management from the left navigation.

Application management

Step 3. Click on Manage Web applications.

Step 4. On clicking Manage web applications, it will redirect to the page where we can see all web applications available in our environment.

Web application

Step 5. Now select your web application and click on General Settings from the WEB APPLICATIONS menu as shown in the below screenshot.

General settings

Step 6. On clicking General Settings, it will open a popup. From this popup go to the Browser File Handling selection and select the radio button for Strict as shown in the below screenshot.

Browser file handling

Step 7. Now go to the bottom of the popup and click on the OK button.

Bottom of the popup

Step 8. Now open the registry editor (type regedit in the run window).

Regedit

Step 9. Go to the Hkey_Current_User\Adobe\Acrobat Reader\11.0\Originals. Now right-click here and select New -> DWORD as shown In the below screenshot.

New

Step 10. Here give the name bBrowserIntegration and set its value as 0

Edit dword

Step 11. Now go to your site collection and open site settings. Here select the Site Collection feature from the Site Collection Administration section.

Site collection features

Step 12. Now activate the Open Documents in Client Applications by Default feature if it is deactivated.

Open document in client

Step 13. Now open the document library from which you want to open your PDF in the Adobe Reader client. Go to the Library Settings from the LIBRARY menu.

Documents

Step 14. Now from General Settings, select Advanced Settings.

Advanced settings

Step 15. Now go to the selection of Opening Documents in the Browser and select the radio button of Open in the client application.

Opening document in the browser

Step 16. Now click on the OK button from the bottom of the page.

Step 15. Now open the Windows Powershell ISE and execute the below PowerShell commands.

Add-PSSnapin Microsoft.Sharepoint.Powershell
$webApp = Get-SPWebApplication("web application URL")
$WebApp.AllowedInlineDownloadedMimeTypes.Add("application/pdf")
$webApp.Update()

Step 17. All configuration for opening a PDF file in Adobe Reader client is done. So now execute iisreset command in command prompt with Run as administrator.

Command prompt

Step 18. Now go to the document library and click on the PDF file.

Documents

Step 19. It will open the PDF file in the Adobe Reader client.

PDF file

Step 20. Now update the PDF file and select the Save As the file.

Step 21. Save As will open a popup to select the destination where you want to save this PDF file. From this popup, select the Add Account option from the left panel.

Add account

Step 22. On clicking Add Account, it will allow selecting destinations such as Box, Dropbox, Google Drive, OneDrive, and SharePoint Site.

Step 23. From these options, select the SharePoint Site.

Add account

Step 24. On selecting SharePoint Site, it will open a popup. In this popup enter the user account name and URL.

Add account

Step 25. On clicking continue, it will allow you to select the document library where you want to save the updated PDF file.

Click on save

Step 26. Select the Document Library where you want to save a PDF file and click on the Save button.

Click on save

Note

  • Disable the Add of Adobe Reader in Internet Explorer if it is installed.
  • This will work for the Internet Explorer browser only.

Summary

This is how we can open PDF files in the Adobe Reader client and update them back to the SharePoint document library in SharePoint 2013.

I hope this article will be helpful.