How to get "PluginProfiler.Solution.zip" - Plugin Registration Tool - Profiler - debugging

I face problem that drives me nuts, and I cannot find a solution anywhere. Also it seems many people faced this problem, and asked in several "more expert" forums like "community.dynamics.com" (for example here) or on sites of MIcrosoft MVPs like Andrew Butenko enter link description here) and several other places.
The problem is: While developing Plugins for Dataverse, we use a tool called "Plugin Regustration Tool" to bring those plugin to the cloud:
And inside this tool we usually use a tool called "Profiler" to debug what is happening, as the plugin runs in the background, and you have no chance seeing what is going wrong in the GUI.
However, when I want to install it, I get an error:
Official documentation of Microsoft does not mention this as they do only cover the "happy" path.
Does anyone know how to get this tool working. I am searching now for hours without even a hint where to start. Also the file is nowhere to be downloaded, otherwise I would have done so as suggested by the error message:
Unhandled Exception: System.InvalidOperationException: Unable to locate the "PluginProfiler.Solution.zip" file. Make sure that it is in the same directory as the PluginProfiler.Library.dll assembly.
bei PluginProfiler.Library.ProfilerManagementUtility.LoadSolutionFile(String prtPath)
bei PluginProfiler.Library.ProfilerManagementUtility.ImportSolutionAsyncAndWait(CrmServiceClient service, String prtpath, Boolean publishWorkflows, Boolean overwriteUnmanagedCustomizations, Int32 sleepInterval, Int32 asyncWaitTimeout)
bei PluginProfiler.Library.ProfilerManagementUtility.RetrieveOrCreateProfilerPluginType(CrmServiceClient service, String prtpath)
bei Microsoft.Crm.Tools.Libraries.OrganizationHelper.InstallProfiler(CrmOrganization org, String prtPath)
bei Microsoft.Crm.Tools.PluginRegistration.OrganizationControlViewModel.<>c__DisplayClass302_0.<InstallProfiler_Clicked>b__2(Object o, DoWorkEventArgs e)
Any help is highly appreciated!

In starting shortcut, "Start in" section just copy paste path to exe file, for example: C:\Users<UserName>\AppData\Local\Microsoft\PowerPlatform\PRT\9.1.0.155\tools
And run as Administrator.
This must fix the problem.

I had the same error. I restarted Plugin Registration Tool as administrator. After it, Profiler was installed successfully.

Related

I have query about TeamSpeak3

enter image description here
I have installed TeamSpeak3 and while launching the app, I receive the Following error: " the procedure entry point free could not be located in the dynamic link library C:\Program Files\TeamSpeak3 Client\Qt5Qml.dll ". How I can fix this?
This might no be the correct place to post this kind of question, but nonetheless here's my answer:
I also had this error once, as I remember, and a reinstall fixed this for me. Hopefully for you as well.

All MVC3 App failing at runtime for same reason

I am starting to learn MVC(3) following a tutorial. I am a developer so I know basics and I cannot find an answer on the web that is relavent enough to fix my issue.
All the MVC apps are the default start up code. I select an "internet application" and choose to user HTML5. F6, build works. Rebuild works. F5, debugging is a different story.
Compiler Error Message: CS1541: Invalid reference option: 'C:\Users\Other\AppData\Local\Temp\Temporary ASP.NET Files\root\f20fc565\816eddc7\App_global.asax.lsdrp-bk.dll' -- cannot reference directories
I have searched my disc and no "App_global.asax.lsdrp-bk.dll" exists at all. Please help!
Shut down all of your visual studio web servers running in your system tray.
Delete everything from:
C:\Users\Other\AppData\Local\Temp\Temporary ASP.NET Files\
That's your first step.That's a good starting point.
The error shows up as:
http://msdn.microsoft.com/en-us/library/2zyc8wkc(v=vs.90).aspx
where it thinks App_global.asax.lsdrp-bk.dll is a folder for some strange reason.
Also if you reference any other projects in your solution, re-add those references.

Trying to create a custom functoid in Biztalk 2010. Trouble getting resources to show (all null)

First time poster here, so if you need more info or when I am too vague, please say so.
We are using Biztalk 2010 here, together with (of course) VS 2010 (Ultimate in my case, not that it matters) on a 64bit server.
I need to create a custom functoid and have done this (enough tuts on the web, albeit usually for older versions of Biztalk).
What I have problems with now are getting the name, tooltip, description and icon to show up when I add my custom dll to the Toolbox. Whatever I try with my resources, I cannot for the life of my have them appear in Toolbox (always null).
Picture link is below, I am not allowed to include more than 2 hyperlinks in my message yet.
I have used this link as (one of my) sources : http://www.eggheadcafe.com/tutorials/aspnet/f843db77-a775-415e-bd08-71c2b1127e40/biztalk-writing-and-usin.aspx
I must be doing something wrong in a stupid way, but I am at the end of my wits here. So, if anyone can please take my hand and help me through this ordeal.. please.. don't let me hold you back.
Thanks in advance !
http://i.stack.imgur.com/3UAJ6.png
Solution by the original author (Dennis):
I copied the sample functoid solution from Microsoft into a new project. Used that as a basis to create my own functoids and all is good. Not really the way to go I suppose, but it worked. The reason for my problem (I think) might have been the blank custom tool namespace on the properties of the resources.

Visual Studio: How to activate compile errors?

sorry, this is not a very nice question for here, but I'm very stressed right now and i have to finish sth. now, so...
I accidentially deactivated compile errors in Visual Basic and I cannot find the option to reactivate. Google doesn't help, and manuals, too.
Please help :(
Thx very much!
fLo
EDIT:
It's about the errors when, for example, I run the following code:
Dim a As Integer
a = 9999999999999999999
Then, usually, the program gets stopped and a given error message shows (what type of exception, which row etc.).
You're probably looking for View, Error List.

WP7 - AppHub submision fails with error code 1044

I just tried submitting my app to AppHub for the first time and I keep getting a submission failure. This is the error:
Error code: 1044
The XAP uses one or more restricted native APIs.
I found this post describing the same error but he says his problem was solved by adding the /NOENTRY linker option to his resource-only DLL (used for application name localization). I already have that option set in my localization DLL, yet the submission fails.
Has anyone come across this, and hopefully found a solution?
Thanks for your help!
EDIT:
Turns out it was the localization DLL, just the presence of a DLL in the XAP was causing that error. Since I'm not supporting any languages other than English right now I just removed the DLL from the project and submitted it. It'd be nice to figure out a solution though.
EDIT2
I have been googling this for a while now and found some blogs about how to localize the application title. All of them call the DLL AppResLib.dll and place it at the root of the application project. I not only gave my DLL another name but also placed it within a Resources subdirectory. I guess one or both of those things are what's causing the error. Unfortunately I won't be able to test this theory out until I submit an update.
Since you've mentioned localizing, I wrote a blog on the subject. But of note is your mention of the dlls that you need to create when you localize an app. I see that you're not localizing this app, but if you should choose to do so later, or with another app, there is a good tool, mentioned in my blog, that will create the dlls for you. You put in the Title, it translates, you direct it to the folder to save in, and it creates all the dlls.

Resources