16 June 2015

Deploying Workshare Professional

Deloying Workshare Professsional is by no means an easy task for configuring the installation if you try and edit the MSI with ORCA. When configuring the MSI to customize the installation of Workshare for office and document management integration, I found the easiest way is to set specific registry keys before the install takes place. If the keys are set first, the MSI will read those keys and configure the app during the installation. Once these keys are installed, you can then run the WorkshareProfessional.msi with the switches /qb- or /qn and nothing else. Of course I installed the prerequisites first before executing the Worshare msi.

32-Bit System:
[HKEY_LOCAL_MACHINE\SOFTWARE\Workshare\Install]
"ProfInterwovenModule"=dword:00000000
"ProfCompareModule"=dword:00000001
"ProfHummingbirdModule"=dword:00000000
"OfficeExcelIntegration"=dword:00000000
"OfficeOutlookIntegration"=dword:00000000
"OfficePowerPointIntegration"=dword:00000000
"OfficeWordIntegration"=dword:00000000
"ProfNetDocumentsModule"=dword:00000001
"ProfWorldoxModule"=dword:00000000
"ProfProtectModule"=dword:00000000
"ProfReviewModule"=dword:00000000
"ProfSecureFileTransferModule"=dword:00000000
"ProfSharepointModule"=dword:00000000

64-Bit System:
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Workshare\Install]
"ProfInterwovenModule"=dword:00000000
"ProfCompareModule"=dword:00000001
"ProfHummingbirdModule"=dword:00000000
"OfficeExcelIntegration"=dword:00000000
"OfficeOutlookIntegration"=dword:00000000
"OfficePowerPointIntegration"=dword:00000000
"OfficeWordIntegration"=dword:00000000
"ProfNetDocumentsModule"=dword:00000001
"ProfWorldoxModule"=dword:00000000
"ProfProtectModule"=dword:00000000
"ProfReviewModule"=dword:00000000
"ProfSecureFileTransferModule"=dword:00000000
"ProfSharepointModule"=dword:00000000


Related Posts:

  • Verify SCCM can see Application GUIDs I was deploying an application through SCCM and it continued to fail every time, although the app was completely installed. I knew it had to be with the verification process. I went through and entered all of the GUIDs for … Read More
  • Get list of installed printers This function will get the list of printers installed for a user. It will also get the Default Printer. It outputs the list to Printers.txt, located at the location where the script is executed. You can download the script… Read More
  • Creating Active Setup Registry Key Here is a script I just wrote that will create an active setup registry key. It prompts you for the title, description, command line execution string, and version. It generates a unique GUID to name the registry key. It the… Read More
  • Installing Dell CCTK and Configuring BIOS Settings This script will install the Dell CCTK and set specified BIOS settings. Unlike the CCTK that allows you to create a multiplatform file to run against any Dell model machine, this script takes a different approach so that t… Read More
  • Apply Updates and Hotfixes online This script is intended to apply updates and hotfixes after the OS has been installed and is online. There are windows updates that cannot be installed offline, as described in this blog. For these updates, I have written a… Read More

1 comments:

  1. Thank you so much for this!
    I have been looking at a way to customise the installer for Workshare 8.x.x.x. and up until now couldn't find out how to do this.

    ReplyDelete