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年前599ビュー
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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ