More Notes on Windows Images
This is a follow-up to Windows Images for OpenStack that includes some of the notes accumulated along the way. Other Docs Building Windows VM images is a topic that has been done to death, but the working consensus of those I've talked to is that Florent Flament's post is one of the best guides through this minefield. Metadata Server Curl Commands Instance UUID: curl http://169.254.169.254/openstack/latest/meta_data.json | python -c 'import sys, json; print json.load(sys.stdin)["uuid"]' Instance Name: curl http://169.254.169.254/openstack/latest/meta_data.json | python -c 'import sys, json; print json.load(sys.stdin)["name"]' Fixed IP: curl http://169.254.169.254/latest/meta-data/local-ipv4 Floating IP: curl http://169.254.169.254/latest/meta-data/public-ipv4 Building on an OpenStack Cloud One of