문제

How can I manually retract a solution, which is installed to a farm, using the SharePoint central administration interface?

도움이 되었습니까?

해결책

Central Admin - System Settings - Manage Farm Solutions, pick your wsp and hit Retract, then Remove once it's done.

다른 팁

Using STSADM

  1. Open command prompt and navigate to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN

  2. Use the stsadm command stsadm -o retractsolution -name solutionName.wsp -immediate

  3. and then remove the wsp stsadm -o deletesolution -name solutionName.wsp

Using Powershell

  1. Go to All Programs => Microsoft SharePoint 2010 Products =>SharePoint 2010 Management Shell =>Run as administrator

  2. Uninstall-SPSolution -identity "solutionName.wsp"

  3. Remove-SPSolution -identity "solutionName.wsp"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top