Search for answers or browse about Sintel Forms.
Install Sintel Forms for SharePoint On-Prem
Installing Sintel Forms On-Prem involves adding two SharePoint Solution files as follows:
- Sintel.Forms.Onprem.wsp
This is the main solution file containing the Sintel Forms product download the latest version here - Sintel.Forms.OnPremise.License.wsp
This is the secondary solution file that contains your license which is required to use the product. To obtain this solution file you must provide your SharePoint Farm ID to us either by emailing it to info@sintelforms.com or submitting a license request form. Please note that you must do this even if you are just requesting a trial license.
Prerequisites
- Sintel Forms requires the .NET Framework 4.6.1 to be installed on all SharePoint servers in the environment.
- Before proceeding with the installation of Sintel Forms on your On-Prem environment you must get your SharePoint Farm ID by running the following PowerShell command on your environment.
(Get-SPFarm).Id
- Once you have this ID simply email it to us info@sintel.ie and we will generate the Sintel.Forms.OnPremise.License.wsp file and send it back to you.
Step 1 Copy both solution files to one of the SharePoint servers in your farm (we recommend using the SharePoint server that hosts the Central Administration site).
Step 2 Launch the SharePoint Management Shell choosing “Run as administrator” and then run the following commands to add and then deploy the 2 solution files.
#Adding the solutions
Add-SPSolution -LiteralPath “C:\Sintel.Forms.Onprem.wsp”
Add-SPSolution -LiteralPath “C:\Sintel.Forms.OnPremise.License.wsp”
#Deploying the solutions
Install-SPSolution -Identity Sintel.Forms.Onprem.wsp -GACDeployment
Install-SPSolution -Identity Sintel.Forms.OnPremise.License.wsp -GACDeployment
That’s it, you now have Sintel Forms installed and your license is applied.
#retracting the solutions Uninstall-SPSolution -Identity Sintel.Forms.Onprem.wsp -AllWebApplications Uninstall-SPSolution -Identity Sintel.Forms.OnPremise.License.wsp -AllWebApplications #removing the solution Remove-SPSolution -Identity Sintel.Forms.Onprem.wsp Remove-SPSolution -Identity Sintel.Forms.OnPremise.License.wsp