Map Drive Script - Check for Drive letter in use
-
How about this to get all drive letters in use?
for %i in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do @%i: 2>nul && set/pz=%i <nul
-
GPP can be set to use the next available drive.
-
how many computers have the card readers? Instead of messing with the rest of the company's drive letters you could script something like:
diskpart
select vol g
assign letter=bYou have to put the diskpart commands in .txt file and then specify that as the script for diskpart to use, but you get the idea. Just move the local media card reader to a letter that's not used by the company and be done with it.