Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change partitions in Visual Studio command prompt

In the MSDOS command prompt to change to a different partition, you just type

C:\> cd E:

But this doesn't work in visual studio. How do I change to another drive/partition in Visual Studio Command Prompt (2010)?

like image 696
puk Avatar asked Dec 12 '22 06:12

puk


1 Answers

Just use the drive name directly, calling CD is not required:

C:\> E:

This works in normal MSDOS.

like image 139
Oded Avatar answered Jan 15 '23 19:01

Oded