user2107902
user2107902

Reputation: 21

Visual Studio Performance Profiling : JavaScript

I'm using the Performance Wizard in Visual Studio 2010 Ultimate. I have selected Instrumentation and the type of profiling JavaScript for my Web Project. When I Launch the wizard I receive the error:

PRF0005: Launch Error Unable to execute (iexplore.exe). Any Ideas anyone. Thanks In advance.

Upvotes: 1

Views: 841

Answers (2)

Rumata
Rumata

Reputation: 91

Got same error on C# desktop project. If WebProject have manifest, possible reason is

<requestedExecutionLevel  level="highestAvailable" uiAccess="false" />`

so solution is

<requestedExecutionLevel  level="asInvoker" uiAccess="false" />`

Upvotes: 2

richard trotter
richard trotter

Reputation: 16

Sounds like a firewall problem, Either disable it or make an exception in your firewall. If you have McAfee, Check to see if you have McAfee Host Intrusion Prevention turned on, check activity logs to see it there is a time that matches the time you tried to launch the wizard.

Upvotes: 0

Related Questions