VMWare Help

BK_123

Golden Master
Messages
7,578
Location
Australia
So I have a copy of VMWare Workstation that I had been given from my certificate course and I've decided to install it on my laptop. Now I am trying to get my XP Pro machine going and I am getting this error (See picture below). When I was in the course I used a seperate external HDD to what I store everything else on. Why is this happening?

byRKoDu.png


I've just moved it to the HDD on my laptop and it seems to work.
 
Last edited:
That happened because you apparently don't have write/execute permissions on the file/folder on the external. Hence it worked when you copied to the local laptop.

Open a command prompt as admin and issue the following commands (where y equals the external drive letter)

takeown /F "y:" /A /R /D Y

xcacls y: /T /E /G Administrators:F

This will Edit (/E) all (/T) the ACLs on the drive (so you don't lose access elsewhere) and grant Admins on your Local PC Full permissions (/G Administrators:F)

Both will take some time to complete depending on how much data is stored on the drive.
 
Back
Top Bottom