Monday, August 11, 2014

SharePoint 2010 Error: No language-neutral solution exists in the store

While uninstalling wsp solution using Remove-SPSolution command, I suddenly started getting this error

Uninstalling solution: MySolution.wsp.

Solution uninstalled.
Removing solution: MySolution.wsp
Error occurred, during SharePoint deployment.
Object reference not set to an instance of an object.

After investigating further, I found out that a solution with the name already exists in the solution store, so after searching on internet I found out that a temporary work around is to remove solution entry from SharePoint_Config database and then add it back again using the same powershell script.

http://ftduarte.blogspot.co.uk/2009/07/sharepoint-no-language-neutral-solution.html?_sm_au_=iVVFhhM3k6FkL4Np

No comments:

Regex Email validation in c# dot net core

 Use this regex /^_?[a-zA-Z0-9]([a-zA-Z0-9]*[._+-])*[a-zA-Z0-9_]+@(?!-)[A-Za-z0-9-]{1,63}(?<!-)(\.(?!-)[A-Za-z0-9-]{1,63}(?<!-))*\.[A-...