View Single Post
12-06-18, 10:19 PM   #8
tonyis3l33t
A Cyclonian
 
tonyis3l33t's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 47
yup, symlink should work fine

PowerShell:
Code:
PS C:\> new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>
Example:
Code:
PS C:\> new-item -itemtype symboliclink -path "C:\program files\warcraft\_retail_" -name WoWRetail -value "f:\games\warcraft\_retail_"
fiddle with it if needed.
  Reply With Quote