Showing posts with label Solutions. Show all posts
Showing posts with label Solutions. Show all posts

Monday, March 30, 2015

The following sites are using templates that are not yet supported after upgrade (or) Sites that rely on these templates cannot be upgraded at this time, preventing upgrade of this site collection



The following sites are using templates that are not yet supported after upgrade (or) Sites that rely on these templates cannot be upgraded at this time, preventing upgrade of this site collection

Issue: when we upgrade any site from SharePoint 2010 to SharePoint 2013 and that site contains custom site definitions, we face the issue.

Solution: Ensure to follow the steps below to resolve the issue.

1.   Both versions of the site definitions (14 and 15) need to be present  in respective hives at the time of performing upgrade. If either of them is not there then the above error will show up.

2.   Uninstall > Remove  and  Add > Install. This had removed the previous site definition files (one and template folder) from 14 hive and added latest files to 15 hive.
 


I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

Monday, July 14, 2014

Cannot uninstall Language Pack 0 because it is not deployed when attempting to uninstall solution on SharePoint 2010



Cannot uninstall Language Pack 0 because it is not deployed when attempting to uninstall solution on SharePoint 2010 

Issue: Cannot uninstall Language Pack 0 because it is not deployed

Solution: Follow the below steps to resolve the issue.

1.    Ensure to check the solution store(Central Administration-->System Settings--> Manage farm solutions) and saw that the solution I was updating was not deployed and thrown error. The error it gave was not able to do GAC deployment of the dll. So I went to GAC and uninstall the WSPs related dlls  and deployed the wsps again from central admin.

2.    From services.msc I stopped and restarted the SharePoint 2010 Timer service and the SharePoint 2010 Administration service.

3.    Then I ran the power shell command again. this time the WSP got updated.



I hope the above information will help you to resolve the issue, in case of any queries/questions regarding the above mentioned information then please let me know. I would be more than happy to help you as well as resolves your issues, Thank you.

Friday, July 4, 2014

Deployment of solutions



Deployment of solutions

Below are the commands that use to deploy or remove the solutions in the farm.
Add-SPSolution
Add-SPSolution –LiteralPath(path of .WSP located)

Install-SPSolution
Install-SPSolution –Identity( nameofyoursolution.wsp) –GACDeployment

Uninstall-SPSolution
Uninstall-SPSolution –Identity( nameofyoursolution.wsp)

Remove-SPSolution
Remove-SPSolution –Identity( nameofyoursolution.wsp)

Update-SPSolution
Update-SPSolution –Identity( nameofyoursolution.wsp) -LiteralPath c(path of .WSP located)-GACDeployment
 

Please Comment if you need Any Help.Your Feed back is always Welcome.I Am Happy to Help !!!!!

Sunday, February 23, 2014

Error while deploying solutions in Multi server farm

Error while deploying solutions in Multi server farm

Background: Farm consists of 8-10 servers for Example and doing Installation of Solutions by using the script. In All the servers Solution deployed successfully Except one server, when we check in Manage farm Solutions under system settings showing error.

Error: deployed successfully Except one server. Error shows, Its already deployed in server, You should force to deploy again.
Central admin->system settings->manage farm solutions->specific WSP(shows error)

Solution: Go to the specific server that shows error in manage farm solutions  And run the below command in SharePoint management shell to install solution on specific server.

      Install-spsolution –gacdeployment -force
                        


Please Comment if you need Any Help.Your Feed back is always Welcome.I Am Happy to Help !!!!!

Thursday, November 7, 2013

Uninstallation and Retraction of a Solution in SharePoint 2010

Uninstallation and Retraction of a Solution in SharePoint 2010

Please follow the below commands to retrace\Uninstall Solution as per Environment.

Using STSADM:

stsadm -o retractsolution -name solutionName.wsp -immediate
stsadm -o deletesolution -name solutionName.wsp

Using PowerShell:

Uninstall-SPSolution -identity solutionName.wsp
Remove-SPSolution -identity solutionName.wsp

ShareThis

X