Time Travel Debugging: how to install it without the store?

Viewed 2091

I've a problem on a preproduction server and I thought it was the right time to try the time travel debugger added to the WinDbg Preview. But it seems impossible to get it outside a dev machine:

  • Install only available from the store ... so need to be connected on the store
  • Windows 10 requirements

Is this features usable outside the development environment ? If yes, how ? Thank you

2 Answers

If you target OS is Windows Server 2016, 2019 or Windows 10, you can use the standalone reduced features version of TTD, now present in most recent versions of Windows. For now, the only thing you can do with this standalone version that comes with the OS is to attach to an existing process to record the trace. This is the command syntax:

Requires elevated privileges

TTTracer [-out <folder-name-for-run-file>] -attach <PID>

Example:

sample tttracer

After reproducing the problem, run from another command prompt to stop capturing:

TTTracer -stop all

Example:

tttracer stop

Open this website and type in the url for the Windbg Preview and click on checkmark to generate the links to the appx files.

enter image description here,

now download the appx and install it with the App Installer or extract it with Unzipping Tool like 7zip and run it on older Windows like Windows 7/8.1.

enter image description here

Related