I was having the "Failed to open archive Interface.MPQ" issue as well, but I could tell my symlinks were not working correctly by clicking normally on each folder (Data and Interface) and I would receive an error. I figured out it was pure user error for me, I needed to put in the fully qualified path in the mklink command for the target:
Code:
cd C:\Users\Public\Games
No worky
Code:
mklink /D "WoW 1\Data" "World of Warcraft\Data"
mklink /D "WoW 1\Interface" "World of Warcraft\Interface"
mklink /H "WoW 1\Wow.exe" "World of Warcraft\Wow.exe"
Works!
Code:
mklink /D "WoW 1\Data" "C:\Users\Public\Games\World of Warcraft\Data"
mklink /D "WoW 1\Interface" "C:\Users\Public\Games\World of Warcraft\Interface"
mklink /H "WoW 1\Wow.exe" "C:\Users\Public\Games\World of Warcraft\Wow.exe"
(I'm running Vista Home Premium and I had already created the directory "WoW 1" and copied everything but the Data, Interface and Wow.exe)
Connect With Us