*This post is locked for comments
*This post is locked for comments
Hi Dharani,
we have to dig in the error further as Microsoft.Xrm.Sdk.OrganizationServiceFault is a generic error and you can have multiple detailed error within.
you have to get your profiling working as with that you will be able to track the main error.
can you check the plugin registration tool error logs and why you are not able to profile :
here is the path of my system :
C:\Users\rawish.kumar\AppData\Roaming\Microsoft\Microsoft Dynamics CRM Plug-in Registration Tool\
Thank you for your reply Rawish. Same PRT is working fine for my sandbox environment. I I am getting Microsoft.Xrm.Sdk.OrganizationServiceFault error only in production environment during the plug in execution. Could you be able to help me in this as well.Though we use same CRM online version between production as well as live. I am getting error only in production environment.
Hi There,
The reason why profiler is not working can be due the fact that you might not be using the latest PRT :
Download tools using PowerShell
1. In your Windows Start menu, type Windows Powershell and open it.
2. Navigate to the folder you want to install the tools to. For example if you want to install them in a devtools folder on your D drive, type cd D:\devtools.
3. Copy and paste the following PowerShell script into the PowerShell window and press Enter.
paste this first :
$sourceNugetExe = "dist.nuget.org/.../nuget.exe" $targetNugetExe = ".\nuget.exe" Remove-Item .\Tools -Force -Recurse -ErrorAction Ignore Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe Set-Alias nuget $targetNugetExe -Scope Global -Verbose
Then this :## ##Download Plugin Registration Tool ## ./nuget install Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool -O .\Tools md .\Tools\PluginRegistration $prtFolder = Get-ChildItem ./Tools | Where-Object {$_.Name -match 'Microsoft.CrmSdk.XrmTooling.PluginRegistrationTool.'} move .\Tools\$prtFolder\tools\*.* .\Tools\PluginRegistration Remove-Item .\Tools\$prtFolder -Force -Recurse
you will find the tool under C\
[Your folder]\Tools\PluginRegistration
mark my suggestion as verified if helpful.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,235 Most Valuable Professional
nmaenpaa 101,156