@kewillford found that PowerShell does support creating hardlinks in Windows 10: ``` New-Item -ItemType HardLink -Name <new link name> -Value <existing file> ``` We should add an implementation of `CreateHardLink` to `PowerShellRunner` that uses `New-Item`
@kewillford found that PowerShell does support creating hardlinks in Windows 10:
We should add an implementation of
CreateHardLinktoPowerShellRunnerthat usesNew-Item