Skip to content

Latest commit

 

History

History
68 lines (43 loc) · 1.55 KB

time-travel-debugging-extension-index.md

File metadata and controls

68 lines (43 loc) · 1.55 KB
title description keywords ms.date
Time Travel Debugging Extension !index Command
The !index extension indexes time travel traces or displays index status information.
!index Command
TTD
Time Travel
WinDbg
Windows Debugging
01/22/2020

!index

:::image type="content" source="images/ttd-time-travel-debugging-logo.png" alt-text="Time travel debugging logo featuring a clock.":::

The !index extension indexes time travel traces or displays index status information.

!index [-status] [-force]

Use !index to run an indexing pass over the current trace.

0:000> !index
Indexed 10/14 keyframes
Indexed 14/14 keyframes
Successfully created the index in 535ms.

If the current trace is already indexed, the !index command does nothing.

0:000> !index
Successfully created the index in 0ms.

Parameters

-status

Use !index -status to report the status of the trace index.

0:000> !index -status
Index file loaded.

-force

Use !index -force to reindex the trace even if an unloadable index file exists on disk.

0:000> !index -force
Successfully created the index in 152ms.

DLL

ttdext.dll

Additional Information

This extension only works with time travel traces. For more information about time travel, see Time Travel Debugging - Overview.

See Also

Time Travel Debugging - Extension Commands