How to change directory to an external disk using the command line in Windows.
16 Apr 2022To change directory in Windows from the command line, you need an extra flag:
cd /d d:\myUsbDrive
The /d
changes the drive and the directory. Relevant StackOverflow.