这里简单点(我的懒惰现金!),但我没有看到亚马逊公共AMIs回购EBS支持的Windows 2003实例。 我必须推出自己的?
AWS提供的唯一Windows实例是2008年。 如果你在寻找他们,包括SQL品种,2003R2就在那里。

不要使用快速启动器来查找它们。
亚马逊在EBS中提供了Windows Server 2003 R2 – 它只是不显示。 查看社区AMI,然后按亚马逊图像进行过滤。 下面是我search的时候(都是EBS支持的和“官方”的亚马逊图片):
ami-0391476a - amazon/Windows-2003R2-i386-Base-2012.01.12 ami-0791476e - amazon/Windows-2003R2-SqlExpress-2012.01.12 ami-0b8b5d62 - amazon/Windows-2003R2-SqlStandard-2012.01.12 ami-1f914776 - amazon/Windows-2003R2-Base-2012.01.12 ami-31914758 - amazon/Windows-2003R2-i386-SqlExpress-2012.01.12 ami-35f5235c - amazon/Windows-2003R2-i386-BaseMultiLang-2012.01.12 ami-49f12720 - amazon/Windows-2003R2-SQLStandardMultiLang-2012.01.12 ami-4bf52322 - amazon/Windows-2003R2-SQLExpressMultiLang-2012.01.12 ami-c5f721ac - amazon/Windows-2003R2-i386-SQLExpressMultiLang-2012.01.12 ami-e5f5238c - amazon/Windows-2003R2-BaseMultiLang-2012.01.12
稍微优雅的是,你可以使用ec2-describe-instances获得相同的结果(我使用i386,因为你的评论如上):
ec2-describe-images --filter "is-public=true" --filter "architecture=i386" --filter "platform=windows" --filter "image-type=machine" --filter "root-device-type=ebs" --owner "amazon" IMAGE ami-0391476a amazon/Windows-2003R2-i386-Base-2012.01.12 amazon available public i386 machine windows ebs hvm xen BLOCKDEVICEMAPPING /dev/sda1 snap-02fc9c66 20 IMAGE ami-35f5235c amazon/Windows-2003R2-i386-BaseMultiLang-2012.01.12 amazon available public i386 machine windows ebs hvm xen BLOCKDEVICEMAPPING /dev/sda1 snap-80463ee4 20 IMAGE ami-31914758 amazon/Windows-2003R2-i386-SqlExpress-2012.01.12 amazon available public i386 machine windows ebs hvm xen BLOCKDEVICEMAPPING /dev/sda1 snap-9ee787fa 20 IMAGE ami-c5f721ac amazon/Windows-2003R2-i386-SQLExpressMultiLang-2012.01.12 amazon available public i386 machine windows ebs hvm xen BLOCKDEVICEMAPPING /dev/sda1 snap-4c7a0228 20
(上面同时返回了Windows 2003和2008–所以grep或手动select – 显然这两个结果集之间的差异是因为后者仅限于i386。上述命令似乎需要密钥和证书才能运行)。