diff --git a/scripts/windows/coco-dev-setup/batch/config/readme.coco b/scripts/windows/coco-dev-setup/batch/config/readme.coco
new file mode 100755
index 000000000..40665c28c
--- /dev/null
+++ b/scripts/windows/coco-dev-setup/batch/config/readme.coco
@@ -0,0 +1,29 @@
+       _____           _        _____                 _           _   
+      /  __ \         | |      /  __ \               | |         | |  
+      | /  \/ ___   __| | ___  | /  \/ ___  _ __ ___ | |__   __ _| |_ 
+      | |    / _ \ / _` |/ _ \ | |    / _ \| '_ ` _ \| '_ \ / _` | __|
+      | \__/\ (_) | (_| |  __/ | \__/\ (_) | | | | | | |_) | (_| | |_ 
+       \____/\___/ \__,_|\___|  \____/\___/|_| |_| |_|_.__/ \__,_|\__|
+ 
+=============================================================================
+ 
+Congratulations, you are now part of the CodeCombat community.
+Now that your Develop Environment has been setup, you are ready to start
+contributing and help us make this world a better place.
+ 
+Do you have questions or would you like to meet us?
+Talk with us on hipchat @ https://www.hipchat.com/g3plnOKqa
+ 
+Another way to reach is, is by visiting our forum.
+You can find it @ http://discourse.codecombat.com/
+ 
+You can read about the latest developments on our blog site.
+This one can be found @ http://blog.codecombat.com/
+ 
+Last but not least, you can find most of our documentation
+and information on our wiki @ https://github.com/codecombat/codecombat/wiki
+ 
+We hope you'll enjoy yourself within our community, just as much as us.
+ 
+ 
+                            - Nick, George, Scott, Michael, Jeremy and Glen
diff --git a/scripts/windows/coco-dev-setup/batch/localisation/en.coco b/scripts/windows/coco-dev-setup/batch/localisation/en.coco
index d6698ed6f..2d64651d3 100755
--- a/scripts/windows/coco-dev-setup/batch/localisation/en.coco
+++ b/scripts/windows/coco-dev-setup/batch/localisation/en.coco
@@ -40,4 +40,5 @@
 	exist=That path doesn't exist. Please try again...
 [end]
 	succesfull=The setup of the CodeCombat Dev. Environment was succesfull.
-	thankyou=Thank you already for your contribution and see you soon.
\ No newline at end of file
+	thankyou=Thank you already for your contribution and see you soon.
+	readme=Do you want to read the README for more information?
\ No newline at end of file
diff --git a/scripts/windows/coco-dev-setup/batch/localisation/nl.coco b/scripts/windows/coco-dev-setup/batch/localisation/nl.coco
index 9da567ceb..6463f4f21 100755
--- a/scripts/windows/coco-dev-setup/batch/localisation/nl.coco
+++ b/scripts/windows/coco-dev-setup/batch/localisation/nl.coco
@@ -40,4 +40,5 @@
 	exist=Dat pad bestaat niet, probeer alsjeblieft opnieuw...
 [end]
 	succesfull=De installatie van de CodeCombat-Ontwikkelings omgeving was succesvol.
-	thankyou=Alvast bedankt voor al je werk en tot binnenkort.
\ No newline at end of file
+	thankyou=Alvast bedankt voor al je werk en tot binnenkort.
+	readme=Wil je de LEESMIJ lezen voor meer informatie?
\ No newline at end of file
diff --git a/scripts/windows/coco-dev-setup/batch/scripts/open_readme.bat b/scripts/windows/coco-dev-setup/batch/scripts/open_readme.bat
new file mode 100755
index 000000000..484f3dd75
--- /dev/null
+++ b/scripts/windows/coco-dev-setup/batch/scripts/open_readme.bat
@@ -0,0 +1 @@
+call open_text_file ..\\config\\readme.coco
\ No newline at end of file
diff --git a/scripts/windows/coco-dev-setup/batch/scripts/setup.bat b/scripts/windows/coco-dev-setup/batch/scripts/setup.bat
index 2ed347bd6..e1e3342c1 100755
--- a/scripts/windows/coco-dev-setup/batch/scripts/setup.bat
+++ b/scripts/windows/coco-dev-setup/batch/scripts/setup.bat
@@ -36,6 +36,13 @@ call get_local_text end-thankyou
 echo %end_succesfull%
 echo %end_thankyou%
 
-call print_exit
+call print_dashed_seperator
+
+call get_local_text end-readme
+call ask_question "!end_readme!"
+
+if "%result%"=="true" (
+	call open_readme
+)
 
 endlocal
\ No newline at end of file