Finding the solution id from a wsp is quite difficult if you do not have access to the manifest.xml used to create it. I’m using SharePoint installer to install wsp files to client environments, as they think it is a lot safer, than batch files or typing in stsadm commands.
There’s one wsp that I needed to package using SharePoint installer but does not have the source code for it, SharePoint installer requires the solution id. But I don’t have the source code anymore.
In this case a quick and easy way was to login to your development server and deploy your solution package if its not there yet. Then run this stsadm command:
stsadm -o enumsolutions > C:\Temp\solutions.txt
This will list all solutions that is added on your farm, just look for the name of your solution and underneath it is the solution ID.
Popularity: 5%





