Below is a set of PowerShell commands and stsadm command to get the solution details in the farm.
1. To list all the solutions - Returns solution name, id and deployed status
Get-SPSolution
2. To list all the properties of a particular solution
Get-SPSolution �identity solutionname.wsp | select *
3. List all solutions, properties and output to a file to read
Get-SPSolution | select * > E:\SolutionDetails.txt
4. List all solutions, properties and output to a file to read (using ststadm)
stsadm.exe -o enumsolutions > E:\SolutionDetails.txt
No comments:
Post a Comment