1 2 3 4 5 6 7 8 |
#Archivo de vínculo simbólico New-Item -ItemType SymbolicLink -Path E:\powershell -Name ficherolink.txt -Target E:\powershell\ficheros\fichero.txt #Directorio de vínculo simbólico New-Item -ItemType SymbolicLink -Path E:\powershell -Name directoriolink -Target E:\powershell\ficheros\ #Vínculo físico New-Item -ItemType HardLink -Path E:\powershell -Name ficherohardlink.txt -Value E:\powershell\ficheros\fichero.txt |