README.md in vagrant-windows-1.0.1 vs README.md in vagrant-windows-1.0.3
- old
+ new
@@ -1,14 +1,22 @@
-
Installing Vagrant-Windows
==========================
- Vagrant 1.0 should use <code>gem "vagrant-windows", "~> 0.1.2"</code>
- Vagrant 1.1 should use <code>gem "vagrant-windows", "~> 1.0.0"</code>
- Vagrant 1.2 is not yet supported. There needs to be a refactor to support capabilities. We are looking for a backwards compatiable way to implement this.
+Supported Guest Operating Systems (Your VM)
+===========================================
+_Does NOT work with Windows 2003 or XP_
+- Windows 7
+- Windows 2008
+- Windows 2008 R2
+- Windows 2012
+- Windows 8
+
Building a Base Box
===================
All Windows Machines
--------------------
@@ -37,11 +45,10 @@
```ruby
config.vm.guest = :windows
config.windows.halt_timeout = 15
config.winrm.username = "vagrant"
config.winrm.password = "vagrant"
-config.vm.network :forwarded_port, guest: 3389, host: 3389
config.vm.network :forwarded_port, guest: 5985, host: 5985
```
Example:
```ruby
@@ -85,15 +92,12 @@
What Works?
===========
- vagrant up|halt|reload|provision
- Chef Vagrant Provisioner
- Puppet Vagrant Provisioner
+- Shell Vagrant provisioner. Batch files or PowerShell (ps1) scripts are supported as well as inline scripts.
-What has not been tested
-========================
-- Shell provisioning. Shell should work, though I have not vetted it yet.
-
TODOs
=========
1. Test it! We need to test on more hosts, guests, and VBox versions. Help wanted.
2. Vagrant 1.2 support. Unfortunately it appears there are some breaking changes with guests between Vagrant 1.1. and 1.2.
3. Chef-Client support.
@@ -159,15 +163,33 @@
- +1 For being super responsive to pull requests.
Changelog
=========
-0.1.1 - Remove extra debug information from command output.
+0.1.1
-0.1.2 - Added virtual box 4.2 support.
+- Remove extra debug information from command output.
-0.1.3 - Added puppet provisioner.
+0.1.2
-1.0.0 - Converted to Vagrant 1.1.x plugin architecture.
+- Added virtual box 4.2 support.
-1.1.1 - Fix #29 Monkey Patch the 4.2 driver to include read_mac_addresses.
- use read_mac_addresses in all cases.
\ No newline at end of file
+0.1.3
+
+- Added puppet provisioner.
+
+1.0.0
+
+- Converted to Vagrant 1.1.x plugin architecture.
+
+1.0.1
+
+- Fix #29 Monkey Patch the 4.2 driver to include read_mac_addresses.
+ - use read_mac_addresses in all cases.
+
+1.0.3
+
+- Added vagrant shell provisioner.
+ The built-in shell provisioner tried to chmod the target script which doesn't make sense on windows.
+
+- Can now run the vagrant-windows plugin via bundle exec instead of vagrant plugin install (for plugin dev).The vagrant src root finding logic didn't work from a bundle, but the native Vagrant src root does.
+- Readme fixes/updates.