Change Drive Letter
To change a drive letter upon insertion of usb is quite simple. Just one prerequisite: administrator.
So, you need a batch file with the following line:
diskpart /s %temp%\text.txt
and a text file saved as "text.txt" in your temp dir (%temp%) with the following lines:
select volume=F
assign letter=T
In this case, F is the current drive letter (F:\) and T is the drive letter that I want (T:\).
- Read more about Change Drive Letter
- 2 comments
- Log in or register to post comments