How to run batch files using CodeDeploy appspec file hooks on windows ec2 instance?

0

I am trying to run batch files to stop/start console apps within a windows ec2 instance upon deployment using CodeDeploy. For testing, I wrote a batch script to run a program that produces a simple text file. This batch script is listed under the ApplicationStart hook of my appspec.yml file. For some reason the text file is not being produced. My assumption is that the script isn't being run. Not sure on how to resolve this issue.

appspec.yml:

version: 0.0
os: windows
files:
  - source: /
    destination: /source/app
hooks:
  ApplicationStart:
    - location: .\application_start.bat 
      timeout: 300

application_start.bat

START C:\source\app\ConsoleApp1\bin\Release\ConsoleApp1.exe

I checked the script after deploying it and was able to run it manually just fine. What might I be missing?

  • I am also running through the free tier version of the ec2 and code deploy. Could this have caused an impact on the batch files not running?

已提问 1 年前602 查看次数
1 回答
0

Here's a link to the CodeDeploy's Windows Deployment tutorial: https://docs.aws.amazon.com/codedeploy/latest/userguide/tutorials-windows.html

AWS
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则