-11

I want to track a file on hard drive "D", while cmd is always opening to hard drive "C" by default.

As you see, I have a file in hard drive "D", but I want to track it on cmd. However I can't because cmd is on hard drive "C" by default.

karel
  • 13,706

3 Answers3

2

Enter

D:

that should be sufficient

Skeeve
  • 19
0
cd D:\folder\subfolder\directory

cd stands for Change Directory

if you want to open the cmd prompt at this location, create a shortcut to cmd, but set the start-in location to D:.. whatever your path was.

enter image description here

DavidPostill
  • 162,382
Fazer87
  • 12,965
0

Starting cmd with the following command:

cmd /k D:
Loki
  • 13