tags:

views:

19

answers:

1

cd d:\projects does not work

How can I set the current working drive and directory so that I can run msbuild scripts from there?

+1  A: 

try the following:

D:
cd \projects
icemanind
or 'cd /d D:\projects' if you want it all in one line.
Kilanash
+1 to both. kilanash's is what I was looking for. but both of them worked.
Maslow