How to Configure PowerPoint Automation Service Application in SharePoint 2013

In this article you will see how to configure a PowerPoint Automation Service Application in SharePoint 2013.

Introduction

PowerPoint Automation Service is a new service application introduced in SharePoint 2013. This service application is used for server-side conversion of PowerPoint presentations to another format. For example a .pptx file can be converted to .pdf format.
 
Supported source file formats:

  1. .pptx
  2. .ppt

Unsupported destination file formats:

  1. .pptx
  2. .pdf
  3. .xps
  4. .jpg
  5. .png

In Central Administration when you go to "Application Management" => "Manage Service Applications" then click the "New" button in the ribbon interface, you will not be able to find an option to create a PowerPoint Conversion Service Application.

PP1.jpg

You can only use a PowerShell script to create the service application. In this article you will see how to create a PowerPoint service application and proxy using a PowerShell script in SharePoint 2013.

Create PowerPoint Automation Service Application:

  1. Open SharePoint 2013 Management Shell as an Administrator.
  2. Run the following command to create the service application.

    New-SPPowerPointConversionServiceApplication -Name "PowerPoint Automation Service Application" -ApplicationPool "SharePoint Web Services Default"

    "PowerPoint Automation Service Application" is the service application name. "SharePoint Web Services Default" is the service application assigned to the default SharePoint Web Services application pool.

    PP2.jpg
     
  3. The PowerPoint Conversion Service Application is created successfully.

Create PowerPoint Conversion Service Application proxy

  1. Open SharePoint 2013 Management Shell as an Administrator.
  2. Run the following command to create the service application proxy.

    New-SPPowerPointConversionServiceApplicationProxy -Name "PowerPoint Automation Service Application Proxy" -ServiceApplication "PowerPoint Automation Service Application" –AddtoDefaultGroup

    "PowerPoint Automation Service Application proxy" is the proxy name. "PowerPoint Automation Service Application" is the service application name. "AddtoDefaultGroup" adds the proxy to the default group.

    PP3.jpg
     
  3. The PowerPoint Conversion Service Application proxy is created successfully and added to the default proxy.

    PP4.jpg
     

Summary

Thus in this article you have seen how to configure a PowerPoint Automation Service Application in SharePoint 2013.