We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如果不满足以上2个条件的请手动更新,在群文件下载!
所谓独立版本就是脱离vs独立使用
(可在群文件下载)
然后将Agent解压到本地
发布配置,添加环境 添加要更新agent的服务器
回到【Windows服务发布】 选择 添加的环境
特别注意,服务名称要填写:AntDeployAgentWindowsService
@ECHO OFF sc stop AntDeployAgentWindowsService //这句的意思是停止Agent服务 xcopy /e $DeployFolder$ $AppFolder$ /y //这句里面有占位符,意思是复制文件 sc start AntDeployAgentWindowsService //这句的意思是启动Agent服务
@ECHO OFF
sc stop AntDeployAgentWindowsService
xcopy /e $DeployFolder$ $AppFolder$ /y
sc start AntDeployAgentWindowsService
总结:先用老的Agent 把新的自己上传到服务器。然后自己运行一个脚本 ,脚本做的事情就是 干掉自己 覆盖成新的文件 在启动自己!!!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
前提条件
如果不满足以上2个条件的请手动更新,在群文件下载!
下载AntDeployAPP独立使用版本
所谓独立版本就是脱离vs独立使用
下载最新版本的Agent
(可在群文件下载)
然后将Agent解压到本地
打开AntDeployAPP独立版本
一定要注意:删除里面的【AntDeployAgentWindowsService.exe.config】文件,不然更新agent就会把配置都还原了!!!!!!!!!!!!!!!!!!切记哦!!!
发布配置,添加环境 添加要更新agent的服务器
回到【Windows服务发布】
选择 添加的环境
特别注意,服务名称要填写:AntDeployAgentWindowsService
实现原理:
内容如下:
@ECHO OFF
sc stop AntDeployAgentWindowsService
//这句的意思是停止Agent服务xcopy /e $DeployFolder$ $AppFolder$ /y
//这句里面有占位符,意思是复制文件sc start AntDeployAgentWindowsService
//这句的意思是启动Agent服务有这个文件 会执行这个文件 实现自更新自己!!!
总结:先用老的Agent 把新的自己上传到服务器。然后自己运行一个脚本 ,脚本做的事情就是 干掉自己 覆盖成新的文件 在启动自己!!!
The text was updated successfully, but these errors were encountered: