Debe tener una Unidad M: \, asignada a Path = "\ some \ network \ path"
la ruta es solo un lugar para lanzar archivos de salida a
Puede utilizar subst
para asignar M:
a un directorio de su elección, por ejemplo c:\temp
:
subst M: C:\temp
Para eliminar lo subst
posterior:
subst M: /D
Ejemplo:
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
uso
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>
Otras lecturas