https://stackoverflow.com/questions/10061191/add-nginx-exe-as-windows-system-service-like-apache1. Download the latest version of Windows Service Wrapper via github or nuget.
https://github.com/kohsuke/winsw2. Rename winsw-xxxxx.exe to something like nginxservice.exe.
This is the name that will show up for the process that owns your nginx process.
3.Place an XML file next to the exe with the same base name, e.g. nginxservice.xml. The contents should be like below (verify your nginx location).
<service>
<id>nginx</id>
<name>nginx</name>
<description>nginx</description>
<executable>c:\nginx\nginx.exe</executable>
<logpath>c:\nginx\</logpath>
<logmode>roll</logmode>
<depend></depend>
<startargument>-p</startargument>
<startargument>c:\nginx</startargument>
<stopexecutable>c:\nginx\nginx.exe</stopexecutable>
<stopargument>-p</stopargument>
<stopargument>c:\nginx</stopargument>
<stopargument>-s</stopargument>
<stopargument>stop</stopargument>
</service>