Created
September 22, 2015 08:08
-
-
Save rjfranco/60646e527651728e69c3 to your computer and use it in GitHub Desktop.
Getting Symlinks in Vagrant on Windows 10 with VirtualBox 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Add this line in Vagrant File | |
# Enables symlinks on Windows VBox | |
vb.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"] | |
- in an admin command prompt, run: | |
fsutil behavior set SymlinkEvaluation L2L:1 R2R:1 L2R:1 R2L:1 | |
- boot vagrant from new admin powershell session |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment