|
Answer» Hello Does ANYONE know how I can put a BATCH file together which will delete a particular mapping, eg \\server1\admin\private but where this drive mapping is non-standard so could be e:\ on ONE or p:\ on another? Thanks fcNewcastleFor what purpose may i ASK ? ?Code: [Select]for /f "tokens=1-3" %%G in ('net use ^| find "\\server1\admin\private"') do net use %%H /deletehello - many thanks for your responses - I'll try that. It's because a number of our users have mapped the main network drive to different letters. We're now standardising on one particular one which I can set through group policy. But this should allow me to clear their VARIOUS instances. Thanks FC
|