Hello Jim,
vagrant sets up a virtual machine. On Windows all AuthoringTool files are copied into this machine. This is due to some Windows limitations related to symbolic-links and path name lengths. Working entirely in the VM on windows, helps us maintain vagrant for different Platforms.
With this setup it is not directly possible to access your vagrant directory from windows.
What I recommend you, is to copy the build folder(s) form the VM back to Windows. Unfortunately this can only be achieved from the command line and will require a ssh client like git.
Open a cmd and navigate to your vagrant directory. Run "vagrant up" and "vagrant ssh".
You are now inside the VirtualMachine (Ubuntu)
Navigate to the build folder. This is located here: "/home/vagrant/temp/{tenantid}/adapt_framework/courses/{tenantid}/{courseid}"
tenantid and courseid is different on each machine, so you must update the following folder names. The easiest way to navigate to this location is with a combination of "ls" and "cd" commands, like this
"cd temp/"
"ls" -> returns tenanid: 56fb8538a4327dcb387895a6
"cd 56fb8538a4327dcb387895a6/"
"cd adapt_framework/courses/56fb8538a4327dcb387895a6/"
"ls" -> displays all your courses
"cd 56fb8699d102027439a57870/"
"ls" -> you should now see build
copy the build folder into Windows:
"cp -r build/ /vagrant/"
The build folder is now in the root of the vagrant directory. You can use the "course" folder inside the build to populate a new course created with the Framework:
Create a course in a different location on you machine e.g. "adapt create course"
Replace course folder with the one created with the AT
"grunt build"
"grunt server"
This should open the course on localhost:9001
Best regards
Thomas