Questions tagged [historical-debugging]

9 questions
9
votes
7 answers

What can we do to make Microsoft add IntelliTrace to VS 2010 Professional Edition?

Now that Microsoft has released VS 2010 I went to the product page here. To my amazement I found out that IntelliTrace(Historical Debugger) is supported only on the Ultimate Edition of VS 2010. This mean that you have to spend almost $4000 for…
Ikaso
  • 2,268
  • 19
  • 26
5
votes
3 answers

intellitrace standalone recorder

I know that Test Case Management app silently records intellitrace data dump files (http://blogs.msdn.com/jennifer/archive/2008/12/05/visual-studio-team-system-vsts-2010-making-testing-easier.aspx) I was curious if there is a standalone version that…
Lenik
  • 1,518
  • 1
  • 16
  • 24
3
votes
3 answers

Will IntelliTrace(tm) (historical debugging) be available for unmanaged c++ in future versions of Visual Studio?

I love the idea of historical debugging in VS 2010. However, I am really disappointed that unmanaged C++ is left out. IntelliTrace supports debugging Visual Basic and C# applications that use .NET version 2.0, 3.0, 3.5, or 4. You can debug…
Tim
  • 20,184
  • 24
  • 117
  • 214
2
votes
1 answer

Play back to the moment of creation of some managed object in WinDbg TTD

Using WinDbg with TTD enabled, how to play back to the moment of creation of some managed object? Lets say I do have its address obtained using !clrstack -a or !dso
Sergei Krivonos
  • 4,217
  • 3
  • 39
  • 54
1
vote
1 answer

Is there a way to generate an Intellitrace file from a TFS Build?

I currently have an on-premises TFS 2017, a TFS build and a test that fails on the build agent but not when running locally. I heard about historical debugging but I couldn't find instructions on how to enable it on a TFS build, if that's even…
1
vote
2 answers

Intellitrace is not collecting data for process 'XXX.vshost.exe'

Recently, I moved to Visual Studio 2013 Ultimate since I heard lot of good about IntelliTrace feature. But it is not working for me. I created simple console application and configured it for "Any Platform". The application does not do anything…
Sambhaji
  • 990
  • 5
  • 19
  • 31
1
vote
1 answer

IntelliTrace Standalone Collector OutputPath empty

We've installed the IntelliTrace Standalone Collector on an IIS web server in our UAT environment. We followed the instructions detailed in this MSDN technical article: https://msdn.microsoft.com/en-us/library/hh398365(v=vs.110).aspx. However, when…
rossco78
  • 231
  • 2
  • 8
0
votes
0 answers

Visual Studio 2019 Historical Debugging not working with Fips

Is Historical Debugging compatible with Fips? Is there any work around? I'm getting the following error when I try to step back to historical events. "This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms." …
0
votes
1 answer

Proper code for storing previous values (and refreshing them)

So here's an example of someone (me) writing very bad C# code. I'm trying to figure out the best method of storing values and replacing them with values as they become known. Here's how I had been doing it…
Spiderbird
  • 87
  • 2
  • 3
  • 8