Friday, February 27, 2015

List of Web applications where solution is deployed

In a SharePoint farm , if we need to display the list of web applications where a solution has been deployed, use the below PowerShell commands

$solution = Get-SPSolution -Identity solutionname.wsp
$solution.DeployedWebApplications | Format-Table -Property Url

No comments:

Post a Comment