The Plugin Registration Tool are used to register the plugins and register the step of plugins.
Follow below steps to download the plugin registration tool.
1. Create one folder into your system any drive folder name as: Dynamics_365_Plugin_Tools
2. Open Windows PowerShell from your Windows Start Menu


[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$sourceNugetExe = "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe"
$targetNugetExe = ".\nuget.exe"
Remove-Item .\Tools -Force -Recurse -ErrorAction Ignore
Invoke-WebRequest $sourceNugetExe -OutFile $targetNugetExe
Set-Alias nuget $targetNugetExe -Scope Global -Verbose
##
##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
5. Once you press enter you will see the download starting window as below.
6. Once it's completed go to you folder you will see the one folder with name Tools open it and you will one more folder with name PluginRegistration open it now you will all your Plugin Registration Tool .dll files and Plugin Registration Tool option.
No comments:
Post a Comment