Search found 1 match
- 18 Feb 2016 06:53
- Forum: DOS Batch Forum
- Topic: Assign Drive Letter by Batch File
- Replies: 5
- Views: 8776
Re: Assign Drive Letter by Batch File
Hi, I had the very same problem on a disk that should appear as E: Here is what I do automatically upon the computer start: if exist E:\ goto :eof echo select volume 3 >%tmp%\script.txt echo assign letter E >>%tmp%\script.txt diskpart /s %tmp%\script.txt rem run diskpart with the correct answers So ...