VMWare Shared Folders

I wanted to add a shared folder to a linux VMWare image in VMWare player, and got thoroughly nowhere. Thanks to the magic of EasyVMX though, I know now the secritz. In the .vmx file of the VM , add:

sharedFolder.option = “alwaysEnabled”
sharedFolder0.present = “TRUE”
sharedFolder0.enabled = “TRUE”
sharedFolder0.readAccess = “TRUE”
sharedFolder0.writeAccess = “TRUE”
sharedFolder0.hostPath = “D:\projects\”
sharedFolder0.guestName = “share”
sharedFolder0.expiration = “never”
sharedFolder.maxNum = “1″

Restart the VM and all is joy. You will need VMWare tools on there, which can be installed, or in most cases a bit of searching will find you an image that already has it.

One Response to “VMWare Shared Folders”

  1. skrodahl Says:

    It’s nice to be of help.
    I just wanted to tell you: VMware Tools are included in the VMware Player 2 and up.

    skrodahl, from easyvmx.com

Leave a Reply