
How to get all the solution names installed in CRM to Powershell
*This post is locked for comments
I have the same question (0)Hello,
In PowerShell you can use the 'Get-CrmRecords' cmdlet from Microsoft.Xrm.Data.PowerShell module, to query the organization for records.
https://github.com/seanmcne/Microsoft.Xrm.Data.PowerShell/blob/master/README.md
Here's an example of such a query, based on your tags I assumed you are on-premise.
Be sure to replace the underlined examples with your organization details:
Install-Module Microsoft.Xrm.Data.PowerShell -Scope CurrentUser Import-Module Microsoft.Xrm.Data.Powershell $credentials = Get-Credential $org = Get-CrmConnection -ServerUrl https://dynamicscrmserver -Credential $credentials -OrganizationName organizationname Get-CrmRecords -conn $org -EntityLogicalName solution -Fields *