README.md in vagrant-windows-0.0.1 vs README.md in vagrant-windows-0.0.2
- old
+ new
@@ -1,8 +1,18 @@
- Building a Base Box
- ===================
+Installing
+==========
+
+ ```
+ gem install vagrant-windows
+ ```
+
+Building a Base Box
+===================
+
+All Windows Machines
+--------------------
-Enable WinRM
```
winrm quickconfig -q
winrm set winrm/config/winrs @{MaxMemoryPerShellMB="512"}
@@ -11,13 +21,18 @@
winrm set winrm/config/service/auth @{Basic="true"}
```
- Create a vagrant user
- For things to work out of the box, username and password should both be vagrant
- - Turn off UAC
- - Disable Shutdown Tracker
+ - Turn off UAC (Msconfig)
+ - Disable complex passwords
+Servers
+--------
+ - Disable Shutdown Tracker (http://www.jppinto.com/2010/01/how-to-disable-the-shutdown-event-tracker-in-server-20032008/)
+ - Disable "Server Manager" Starting at login (http://www.elmajdal.net/win2k8/How_to_Turn_Off_The_Automatic_Display_of_Server_Manager_At_logon.aspx)
+
The Vagrant File
================
Add the following to your Vagrantfile
@@ -43,10 +58,11 @@
config.vm.provision :chef_solo do |chef|
chef.add_recipe("your::recipe")
end
end
+````
What Works?
===========
- vagrant up|hault|reload|provision
- Chef Vagrant Provisioner
@@ -55,10 +71,14 @@
========================
- Everything Else!!!
- Shell and Puppet Provisioners
- Shell should work, though I have not vetted it yet.
+What does not work
+==================
+- Complex networking setups
+
What Can I do to help?
======================
1. Contribute Code (See Below)
2. Test Various Scenarios and file bugs for things that dont work
@@ -71,8 +91,8 @@
5. Create a pull requst from your branch into master (Please be sure to provide enough detail for us to cipher what this change is doing)
References and Shout Outs
=========================
-Chris McClimans - Vagrant Branch (https://github.com/hh/vagrant/blob/feature/winrm/)
-Dan Wanek - WinRM GEM (https://github.com/zenchild/WinRM)
- +1 For being super responsive to pull requests.
+- Chris McClimans - Vagrant Branch (https://github.com/hh/vagrant/blob/feature/winrm/)
+-Dan Wanek - WinRM GEM (https://github.com/zenchild/WinRM)
+ - +1 For being super responsive to pull requests.
\ No newline at end of file