增加注册Windows服务工具脚本

This commit is contained in:
falcon 2020-04-26 12:00:52 +08:00
parent 4b64f4137f
commit ed20fdebd7
3 changed files with 12 additions and 0 deletions

8
FAuth/Tools/Readme.txt Normal file
View File

@ -0,0 +1,8 @@
注册FAuth为Windows服务。
注册:
1、打开RegisterService.bat 修改网站exe程序和运行路径。
2、执行bat脚本。
卸载:
执行UnRegisterService.bat脚本。

View File

@ -0,0 +1,2 @@
sc create FAuth start= auto binPath= "C:\Services\FAuth\FAuth.exe"
pause

View File

@ -0,0 +1,2 @@
sc delete FAuth
pause