Install-SPSolution
适用于: SharePoint Foundation 2010, SharePoint Server 2010
上一次修改主题: 2015-03-09
在服务器场中部署已安装的 SharePoint 解决方案。
Syntax
Install-SPSolution [-Identity] <SPSolutionPipeBind> [-AllWebApplications <SwitchParameter>] [-AssignmentCollection <SPAssignmentCollection>] [-CASPolicies <SwitchParameter>] [-Confirm [<SwitchParameter>]] [-Force <SwitchParameter>] [-GACDeployment <SwitchParameter>] [-Language <UInt32>] [-Local <SwitchParameter>] [-Time <String>] [-WebApplication <SPWebApplicationPipeBind>] [-WhatIf [<SwitchParameter>]]
Install-SPSolution [[-Identity] <SPSolutionPipeBind>] -Synchronize <SwitchParameter> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-Language <UInt32>] [-WhatIf [<SwitchParameter>]]
详细说明
Install-SPSolution cmdlet 在服务器场中部署已安装的 SharePoint 解决方案。使用 Add-SPSolution cmdlet 可以在服务器场中安装 SharePoint 解决方案程序包。
Parameters
参数 | 是否必需 | 类型 | 说明 |
---|---|---|---|
Identity |
必需 |
Microsoft.SharePoint.PowerShell.SPSolutionPipeBind |
指定要部署的 SharePoint 解决方案。 键入的值必须为 12345678-90ab-cdef-1234-567890bcdefgh 形式的有效 GUID;有效的 SharePoint 解决方案名称(如 SPSolution1);或有效 SPSolution 对象的实例。 |
AllWebApplications |
可选 |
System.Management.Automation.SwitchParameter |
指定为服务器场中的所有 SharePoint Web 应用程序部署新的 SharePoint 解决方案。 |
AssignmentCollection |
可选 |
Microsoft.SharePoint.PowerShell.SPAssignmentCollection |
管理对象以便正确进行处理。使用 SPWeb 或 SPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。在使用 SPWeb、SPSite 或 SPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。
Note
在使用 Global 参数时,所有对象均包含在全局存储中。如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。
|
CASPolicies |
可选 |
System.Management.Automation.SwitchParameter |
指定可以为新 SharePoint 解决方案部署代码访问安全 (CAS) 策略。 |
Confirm |
可选 |
System.Management.Automation.SwitchParameter |
在执行命令之前提示您确认。有关详细信息,请键入以下命令:get-help about_commonparameters |
Force |
可选 |
System.Management.Automation.SwitchParameter |
强制部署新 SharePoint 解决方案。 |
GACDeployment |
可选 |
System.Management.Automation.SwitchParameter |
指定可以为新 SharePoint 解决方案部署全局程序集缓存 (GAC)。 |
Language |
可选 |
System.UInt32 |
部署解决方案语言包时指定解决方案的语言。如果不指定此参数,将采用零 ("0")。对于所有语言都有效的解决方案可使用零。 |
Local |
可选 |
System.Management.Automation.SwitchParameter |
在活动服务器计算机上部署此解决方案。 |
Synchronize |
可选 |
System.Management.Automation.SwitchParameter |
在本地服务器场中同步所有解决方案或指定解决方案。 |
Time |
可选 |
System.String |
指定将部署此解决方案的时间。默认值为立即部署。 键入的值必须是 2010, 5, 1 形式的有效 DateTime 值。 |
WebApplication |
可选 |
Microsoft.SharePoint.PowerShell.SPWebApplicationPipeBind |
为指定 SharePoint Web 应用程序部署 SharePoint 解决方案。 该类型必须是格式为 12345678-90ab-cdef-1234-567890bcdefgh 的有效 GUID;SharePoint Web 应用程序的有效名称(例如,MyOfficeApp1);或有效 SPWebApplication 对象的实例。 |
WhatIf |
可选 |
System.Management.Automation.SwitchParameter |
显示一条描述命令作用的消息,而不执行命令。有关详细信息,请键入以下命令:get-help about_commonparameters |
输入类型
返回类型
错误
错误 | 说明 |
---|---|
Exceptions
异常 | 说明 |
---|---|
Example
------------------示例------------------
Install-SPSolution -Identity contoso_solution.wsp -GACDeployment
此示例在服务器场中部署已安装的 SharePoint 解决方案 contoso_solution.wsp
,并指定可以为新 SharePoint 解决方案部署 GAC。
See Also
Reference
Get-SPSolution
Add-SPSolution
Update-SPSolution
Uninstall-SPSolution
Remove-SPSolution
Remove-SPSolutionDeploymentLock