Need to identify the various PowerShell Cmdlets available for Dynamics CRM ?
By default 'Microsoft.Crm.PowerShell.dll' provides you '26 cmdlets' to perform various operations related to CRM 2011 and 2013.
You can identify the list of available PowerShell cmdlets for CRM by executing 'Get-Command' in PowerShell.
Get-Command -PSSnapin "Microsoft.Crm.PowerShell"
You can also select the cmdlet 'Name' and format it to a table using the below command
Get-Command -PSSnapin "Microsoft.Crm.PowerShell" | format-table Name
No comments:
Post a Comment