Reputation: 379
I am looking to install the AWS CLI on a windows server core EC2 instance, as per the Documentation , The AWS CLI should be installed with msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi
. The problem with this, is that it will attempt to bring up a GUI - Windows server core does not have any GUI, and therefore we cannot interact with it. I have tried /quiet and other such commands, but the terminal simply gives no response.
How can I install the AWS CLI on a windows server core EC2 instance?
Upvotes: 1
Views: 413
Reputation: 121669
Try a "quiet install":
msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi /qn
Upvotes: 1