Installing SharePoint Integration for Genesis for SharePoint 2013 / Manual SharePoint Installation using PowerShell |
To install the solution files for AgilePoint BPMS using the PowerShell command line tool, do the following.
For SharePoint 2013, the default location is Start > Microsoft SharePoint 2013 Products > SharePoint 2013 Management Shell.
Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.SettingsList.wsp" Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.WebParts.wsp" Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.WFIntegration.wsp" Add-SPSolution "[AgilePoint SharePoint Integration installation folder]\Ascentn.SharePoint.ListForm.wsp"
Example Path: C:\Program Files\AgilePoint\AgilePoint Integration for SharePoint
This copies the wsp files from the installation folder (The default location is [AgilePoint installation folder]\AgilePoint Integration for SharePoint.), and adds them to SharePoint's Central Administration repository. You can specify a different path in the command.
SharePoint Integration for AgilePoint:
Install-SPSolution -WebApplication "[Site Collection URL]" -GACDeployment -FullTrustBinDeployment -Identity Ascentn.SharePoint.SettingsList.wsp -CompatibilityLevel All Install-SPSolution –WebApplication "[Site Collection URL]" -GACDeployment -FullTrustBinDeployment -Identity Ascentn.SharePoint.WebParts.wsp -CompatibilityLevel All Install-SPSolution –WebApplication "[Site Collection URL]" -GACDeployment -FullTrustBinDeployment -Identity Ascentn.SharePoint.WFIntegration.wsp -CompatibilityLevel All Install-SPSolution –WebApplication "[Site Collection URL]" -GACDeployment -FullTrustBinDeployment -Identity Ascentn.SharePoint.ListForm.wsp -CompatibilityLevel All
Site Collection URL Example: http://mysharepoint:8080/sites/mysite
Install-SPApplicationContent
Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointSettingsListFeature Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointWebParts Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointWFIntegration Enable-SPFeature -Url "[Site Collection URL]" -Identity AgilePointListForm
Site Collection URL Example: http://mysharepoint:8080/sites/mysite