Hi, Bobmie
I think the following little bat file will give you what you want:
cd>curdir.txt
set /p curd=<curdir.txt
set drive=%curd:~0,1%
This will put the current drive and path in an evironment variable called curd and the current drive letter in one called drive.
This will work only with the cmd.exe command interpreter (not command.com).
Jock