Amazon web services 为什么赢了';你不能执行我的命令吗?

Amazon web services 为什么赢了';你不能执行我的命令吗?,amazon-web-services,amazon-cloudformation,Amazon Web Services,Amazon Cloudformation,我正在使用此CloudFormation脚本创建Windows实例并安装: 这到底是怎么回事?提前感谢。您的命令块应嵌套在config块中,此时它在层次结构中处于同一级别 "AWS::CloudFormation::Init" : { "config" : { "files" : { "c:\\Packages\\WebDeploy_amd64_en-US.msi" : { "source" : "http://do

我正在使用此CloudFormation脚本创建Windows实例并安装:


这到底是怎么回事?提前感谢。

您的
命令
块应嵌套在
config
块中,此时它在层次结构中处于同一级别

    "AWS::CloudFormation::Init" : {
      "config" : {
        "files" : {
          "c:\\Packages\\WebDeploy_amd64_en-US.msi" : {
            "source" : "http://download.microsoft.com/download/1/B/3/1B3F8377-CFE1-4B40-8402-AE1FC6A0A8C3/WebDeploy_amd64_en-US.msi"
          }
        },
        "commands" : {
          "1-installwebdeploy" : {
            "command" : "msiexec.exe /i c:\\Packages\\WebDeploy_amd64_en-US.msi ADDLOCAL=ALL /qn /norestart"
          }
        }
      },
    }
2013-07-23 12:57:10,740 [DEBUG] CloudFormation client initialized with endpoint https://cloudformation.eu-west-1.amazonaws.com
2013-07-23 12:57:10,740 [DEBUG] Describing resource WindowsServer in stack ***
2013-07-23 12:57:14,079 [DEBUG] Creating Scheduled Task for cfn-init resume
2013-07-23 12:57:14,220 [DEBUG] Scheduled Task created
2013-07-23 12:57:14,328 [INFO] Running configSets: default
2013-07-23 12:57:14,328 [INFO] Running configSet default
2013-07-23 12:57:14,328 [INFO] Running config config
2013-07-23 12:57:14,328 [DEBUG] No packages specified
2013-07-23 12:57:14,328 [DEBUG] No groups specified
2013-07-23 12:57:14,328 [DEBUG] No users specified
2013-07-23 12:57:14,328 [DEBUG] No sources specified
2013-07-23 12:57:14,328 [DEBUG] Parent directory c:\Packages does not exist, creating
2013-07-23 12:57:14,328 [DEBUG] Writing content to c:\Packages\WebDeploy_amd64_en-US.msi
2013-07-23 12:57:14,328 [DEBUG] Retrieving contents from http://download.microsoft.com/download/1/B/3/1B3F8377-CFE1-4B40-8402-AE1FC6A0A8C3/WebDeploy_amd64_en-US.msi
2013-07-23 12:57:14,673 [DEBUG] No mode specified for c:\Packages\WebDeploy_amd64_en-US.msi
2013-07-23 12:57:14,673 [WARNING] Unsupported OS for setting owner/group: nt
2013-07-23 12:57:14,673 [DEBUG] No commands specified
2013-07-23 12:57:14,673 [DEBUG] No services specified
2013-07-23 12:57:14,673 [INFO] ConfigSets completed
2013-07-23 12:57:14,734 [DEBUG] Deleting Scheduled Task for cfn-init resume
2013-07-23 12:57:14,796 [DEBUG] Scheduled Task deleted
    "AWS::CloudFormation::Init" : {
      "config" : {
        "files" : {
          "c:\\Packages\\WebDeploy_amd64_en-US.msi" : {
            "source" : "http://download.microsoft.com/download/1/B/3/1B3F8377-CFE1-4B40-8402-AE1FC6A0A8C3/WebDeploy_amd64_en-US.msi"
          }
        },
        "commands" : {
          "1-installwebdeploy" : {
            "command" : "msiexec.exe /i c:\\Packages\\WebDeploy_amd64_en-US.msi ADDLOCAL=ALL /qn /norestart"
          }
        }
      },
    }