Iframe显示SharePoint页面(部署)

 1)生成WSP文件
右键点击WebPart工程,选择"Deploy",这样就会在Bin目录中生成一个部署文件 .WSP 文件。然后将WSP文件拷贝到需要部署的SharePoint服务器上。

2)部署(安装)
打开SharePoint 2013 Management Shell 命令行配置工具,使用以下命令部署WebPart:
•Add-SPSolution -LiteralPath "你的WSP文件路径"
例如:Add-SPSolution -LiteralPath "d:\webpart\test.wsp"

•Install-SPSolution -Identity "你的WSP文件名称" -WebApplication http://你的网站:[端口] –GACDeployment
例如:Install-SPSolution -Identity "test.wsp" -WebApplication  http://product:82 –GACDeployment
此命令也可以通过Sharepoint管理页面完成:SharePoint 2013 Central Administration,System Settings-> Farm Management-> Manage farm solutions->点击进入你添加的WSP文件-> Deploy Solution。
注意:此命令执行后,SharePoint会使用wsp文件释放出dll文件到GAC(Global Assembly Cache)文件夹内。GAC文件夹:C:\Windows\Microsoft.NET\assembly\GAC_MSIL。(C:\Windows\Microsoft.NET\assembly\GAC_MSIL\test\v4.0_1.0.0.0__259d00b7c1d9af60\test.dll)


•Enable-SPFeature -Identity "你的WSP名称_你的功能名称" -Url http://你的网站:网站端口
例如:Enable-SPFeature -Identity "test_Feature1" -Url  http://product:82
此命令也可以通过 http://product网站完成:Site Settings-> Web Designer Galleries-> Web parts->FILES->New Document->勾选你添加的web part 点击Populate Gallery。
注意:此命令要等Install-SPSolution执行后10秒后再执行,目的要等一些后台异步操作完成,如释放dll文件。否则会执行失败。
 
 
-------------------------------------------------------------
该步骤用于执行删除wsp文件 
•Remove-SPSolution -Identity "你的WSP文件名称" -Confirm:$false
例如:Remove-SPSolution -Identity " test.wsp" -Confirm:$false
此命令也可以通过Sharepoint管理页面完成:SharePoint 2013 Central Administration,System Settings-> Farm Management-> Manage farm solutions->点击进入你要删除的WSP文件-> Remove Solution。 
 或是先
•Uninstall-SPSolution -Identity "你的WSP文件名称" -WebApplication "http://你的网站:网站端口" -Confirm:$false
例如:Uninstall-SPSolution -Identity "test.wsp" -WebApplication  http://product:82 -Confirm:$false 
 
------------------------------------------------------------------

Add-SPSolution -LiteralPath "C:\Users\massvacc\Desktop\XMlFrame.wsp"
Install-SPSolution -Identity "XMlFrame.wsp" -WebApplication http://localhost:80 -GACDeployment
Enable-SPFeature -Identity "XMlFrame_Feature1" -Url http://localhost:80

Install-SPSolution –Identity "XMlFrame.wsp" -GACDeployment

Update-SPSolution -Identity XMlFrame.wsp -LiteralPath c:\XMlFrame.wsp -GACDeployment

Uninstall-SPSolution -Identity "XMlFrame.wsp" -WebApplication http://localhost:80 -Confirm:$false
Remove-SPSolution -Identity "XMlFrame.wsp" -Confirm:$false
Uninstall-SPSolution -Identity "XMlFrame.wsp" -Confirm:$false

Disable-SPFeature -Identity "XMlFrame_Feature1" -Url http://localhost:80 -Confirm:$false

你可能感兴趣的:(SharePoint)