发新话题
打印

将 frp 封装成 windows 服务,可以在后台运行,并且开机自启动

将 frp 封装成 windows 服务,可以在后台运行,并且开机自启动

1、NSSM
需要下载 NSSM, http://www.nssm.cc/usage, 它可以将普通的 windows 程序封装成服务。

2、sc
创建一个bat脚本 auto_frp.bat ,保存以下内容,根据实际情况替换

@echo off  
start  "C:\Windows\System32\cmd.exe"   
cd C:\Soft\frp\
frpc -c frpc.ini
exit
添加到服务自启,cmd执行以下命令,binPath为绝对路径

sc create frp binPath=C:\Soft\frp\auto_frp.bat start=auto

参考:
https://shenbo.github.io/2019/02/27/apps/frp%E9%85%8D%E7%BD%AE%E5%86%85%E7%BD%91%E7%A9%BF%E9%80%8F%E3%80%81%E9%80%9A%E8%BF%87rdp%E8%BF%9C%E7%A8%8B%E6%A1%8C%E9%9D%A2%E6%8E%A7%E5%88%B6windows%E7%B3%BB%E7%BB%9F/

https://github.com/axboy/note/blob/master/os/frp-rdp.md

TOP

发新话题