I can successfully run a .cmd file by typing its name (tsc in this case):
C:\Windows\system32>tsc --version
Version 1.0.3.0
It instantly prints the result and terminates.
There is no tsc in C:\Windows\system32, so presumably it is being launched somewhere from a location specified in my %PATH%. I've searched through the drive and found a bunch of tsc.cmd files. How can I know, which of them is being launched?
Related, probably a duplicate: Windows equivalent of whereis?
