RongtongJin commented on a change in pull request #73:
URL: https://github.com/apache/rocketmq-site/pull/73#discussion_r435977584
##########
File path: _docs/01-quick-start-guide.md
##########
@@ -77,3 +77,55 @@ Send shutdown request to mqbroker(36695) OK
The mqnamesrv(36664) is running...
Send shutdown request to mqnamesrv(36664) OK
```
+
+
+# Windows
+
+The guide is working for windows 10 , please make sure you have powershell
installed.
+
+Download latest binary release. and extract zip file into your local disk.
Such as: `D:\soft\rocketmq-all-4.7.0-bin-release`
+
+
+
+## Start Name Server
+
+```bash
+$Env:ROCKETMQ_HOME="D:\soft\rocketmq-all-4.7.0-bin-release"
+$Env:NAMESRV_ADDR="localhost:9876"
+.\bin\mqnamesrv.cmd
+```
+
+## Start Broker
+
+Open new powershell window. change directory to rocketmq
+
+```bash
+$Env:ROCKETMQ_HOME="D:\soft\rocketmq-all-4.7.0-bin-release"
+$Env:NAMESRV_ADDR="localhost:9876"
+.\bin\mqbroker.cmd -n localhost:9876 autoCreateTopicEnable=true
+```
+
+## Send & Receive Messages
+
+Open new powershell window. change directory to rocketmq
+
+```bash
+$Env:ROCKETMQ_HOME="D:\soft\rocketmq-all-4.7.0-bin-release"
+$Env:NAMESRV_ADDR="localhost:9876"
+.\bin\tool.cmd org.apache.rocketmq.example.quickstart.Producer
+```
+
+Then you will see messages produced. and now we can try consumer messages.
+
+Open new powershell window. change directory to rocketmq
+
+
+```bash
+$Env:ROCKETMQ_HOME="D:\soft\rocketmq-all-4.7.0-bin-release"
+$Env:NAMESRV_ADDR="localhost:9876"
+.\bin\tool.cmd org.apache.rocketmq.example.quickstart.Consumer
+```
Review comment:
It would be better to extract the following statement instead of writing
in every part:
```
$Env:ROCKETMQ_HOME="D:\rocketmq"
$Env:NAMESRV_ADDR="localhost:9876"
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]