Você deve ter uma Unidade M: \, mapeada para Caminho="\ alguma \ rede \ caminho"
the path is only somewhere to throw output files to
Você pode usar subst
para mapear M:
para um diretório de sua escolha, por exemplo, c:\temp
:
subst M: C:\temp
Para remover o subst
mais tarde:
subst M: /D
Exemplo:
F:\test>subst m: c:\temp
F:\test>dir m:
Volume in drive M has no label.
Volume Serial Number is C8D0-DF1E
Directory of M:\
01/05/2016 22:48 <DIR> .
01/05/2016 22:48 <DIR> ..
21/04/2016 22:43 <DIR> acrord32_sbx
14/07/2015 11:01 0 FXSAPIDebugLogFile.txt
30/04/2016 10:08 262,144 ICACHE-04044202.tmp
30/04/2016 10:08 262,144 ICACHE-14B5B6BB.tmp
30/04/2016 10:08 262,144 ICACHE-19EE2C4D.tmp
30/04/2016 10:08 262,144 ICACHE-55F8C5A0.tmp
30/04/2016 10:08 262,144 ILIST-00000000.tmp
30/04/2016 10:08 262,144 ILIST-22EF1586.tmp
30/04/2016 10:08 262,144 ILIST-28CAE025.tmp
30/04/2016 10:08 262,144 ILIST-6E36D60E.tmp
28/04/2016 21:36 <DIR> mozilla-temp-files
19/03/2016 00:36 192,512 sfamcc00001.dll
19/03/2016 00:36 158,720 sfareca00001.dll
01/05/2016 10:29 16,384 ~DF691E2F90109AA7E3.TMP
12 File(s) 2,464,768 bytes
4 Dir(s) 72,210,866,176 bytes free
F:\test>subst m: /d
subst
usage
F:\test>subst /?
Associates a path with a drive letter.
SUBST [drive1: [drive2:]path]
SUBST drive1: /D
drive1: Specifies a virtual drive to which you want to assign a path.
[drive2:]path Specifies a physical drive and path you want to assign to
a virtual drive.
/D Deletes a substituted (virtual) drive.
Type SUBST with no parameters to display a list of current virtual drives.
F:\test>
Leitura Adicional
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.
- subst - Substitua uma letra de unidade por uma rede ou caminho local.