Can Powershell 1.0 create hard and soft links analogous to the unix variety? If this isn't built in, can someone point me to a site that has a ps1 script that mimics this? This is a nessary function of any good shell, IMHO. :)
|
The Junction command line utility from Sysinternals makes creating and deleting symbolic (soft)links easy. Hard Links and Junctions in Windows. |
|||||||||
|
|
In a pinch, you can also call mklink from powershell directly (for symbolic links).
For hard links, I suggest something like SysInternals Junction. |
|||||||||||
|
|
No it isn't built into PowerShell and the utility mklink on Vista/Win7 is built directly into cmd.exe. You can use the PowerShell Community Extensions (free). There are several cmdlets for reparse points of various types: New-HardLink, New-SymLink, New-Junction, Remove-ReparsePoint and others. |
|||||||||
|
|
you can use the utility:
|
|||||
|
|
In Windows 7, the command is
PowerShell finds it without the full path (c:\Windows\system32) or extension (.exe). |
|||
|
|
|
I wrote a PowerShell module that has native wrappers for MKLINK. https://gist.github.com/2891103 Includes functions for:
Captures the MKLINK output and throws proper PowerShell errors when necessary. |
|||
|
|
|
actually, sysinternal junction only works with directories (don't ask me why), so it can't hardlink files. i would go with cmd /c mklink for soft links (can't figure why it's not supported directly by PS), or fsutil for hardlinks. if you need it to work on XP, i do not know of anything other than sysinternal junction, so you might be limited to directories. |
|||
|
|
|
I found this the simple way without external help. Yes, it uses an archaic DOS command but it works, it's easy, and it's clear.
This uses the DOS dir command to find all entries with the symbolic link attribute, filters on the specific link name followed by target "[]" brackets, and for each - presumably one - extracts just the target string. |
|||
|
|