Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

About SSRS 2012

Icon

There were some significant infrastructure changes made for SSRS 2012 in SharePoint integration mode that require a different installation process from native mode. These instructions are outlined below.

To install OfficeWriter the first time, run the automatic installation. Once the OfficeWriter installer has unpacked the dll files that contain OfficeWriter, you can re-install OfficeWriter manually (for example, if you are moving OfficeWriter to a different server):

  1. Make sure that the following are installed on the server:
    #* Microsoft .NET Framework Redistributable version 3.5 SP1 (or later)
    • MS Reporting Services 2012
    • SharePoint 2010 or later
      # Copy the following files to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\WebServices\Reporting\bin
    • SoftArtisans.OfficeWriter.RS2008.dll (also used for Reporting Services 2012)
    • SoftArtisans.OfficeWriter.WordWriter.dll
    • SoftArtisans.OfficeWriter.ExcelWriter.dll
      # Run LicenseManager.exe to install the OfficeWriterEE or OfficeWriterSE key.
      # Start SharePoint 2010 Management Shell. If you don't know the name of your Reporting Services instance, run the command Get-SPRSServiceApplication within Management Shell. For example, "SSRS2012App".
      # To install the rendering extensions, you will need to run a PowerShell command. First, create a text file called "InstallOfficeWriterForSSRS.ps1" that contains the following:
      {newcode}
      $app = Get-SPRSServiceApplication -Name "enter_your_ssrs_instance_name_here"

New-SPRSExtension -ExtensionType "Render" -Identity $app -Name "XLTemplate" -TypeName "SoftArtisans.OfficeWriter.ReportingServices.ExcelTemplateRenderer,SoftArtisans.OfficeWriter.RS2008"

New-SPRSExtension -ExtensionType "Render" -Identity $app -Name "WordTemplate" -TypeName "SoftArtisans.OfficeWriter.ReportingServices.WordTemplateRenderer,SoftArtisans.OfficeWriter.RS2008"

# To run the command, type &"C:\FilePath\InstallOfficeWriterForSSRS.ps1" into Management Shell. This step may take a few minutes.

  • No labels