diff --git a/pages/mydoc/mydoc_install_jekyll_on_windows.md b/pages/mydoc/mydoc_install_jekyll_on_windows.md
index 8beef1e..365e6db 100644
--- a/pages/mydoc/mydoc_install_jekyll_on_windows.md
+++ b/pages/mydoc/mydoc_install_jekyll_on_windows.md
@@ -8,30 +8,14 @@ folder: mydoc
{% include tip.html content="For a better terminal emulator on Windows, use [Git Bash](https://git-for-windows.github.io/). Git Bash gives you Linux-like control on Windows." %}
-## Install Ruby
+## Install Ruby and Ruby Development Kit
First you must install Ruby because Jekyll is a Ruby-based program and needs Ruby to run.
1. Go to [RubyInstaller for Windows](http://rubyinstaller.org/downloads/).
-2. Under **RubyInstallers**, download and install one of the Ruby installers (usually one of the first two options).
-3. Double-click the downloaded file and proceed through the wizard to install it.
-
-## Install Ruby Development Kit
-
-Some extensions Jekyll uses require you to natively build the code using the Ruby Development Kit.
-
-1. Go to [RubyInstaller for Windows](http://rubyinstaller.org/downloads/).
-2. Under the **Development Kit** section near the bottom, download one of the **For use with Ruby 2.0 and above...** options (either the 32-bit or 64-bit version).
-3. Move your downloaded file onto your **C** drive in a folder called something like **RubyDevKit**.
-4. Extract the compressed folder's contents into the folder.
-5. Browse to the **RubyDevKit** location on your C drive using your Command Line Prompt.
-
- To see the contents of your current directory, type dir
. To move into a directory, type cd foldername
, where "foldername" is the name of the folder you want to enter. To move up a directory, type cd ../
one or more times depending on how many levels you want to move up. To move into your user's directory, type /users
. The /
at the beginning of the path automatically starts you at the root.
-
-6. Type `ruby dk.rb init`
-7. Type `ruby dk.rb install`
-
-If you get stuck, see the [official instructions for installing Ruby Dev Kit](https://github.com/oneclick/rubyinstaller/wiki/Development-Kit).
+2. Under **RubyInstallers**, download and install one of the Ruby installers under the **WITH DEVKIT** list (usually the recommended/highlighted option).
+3. Double-click the downloaded file and proceed through the wizard to install it. Run the `ridk install` step on the last stage of the installation wizard.
+4. Open a new command prompt window or Git Bash session.