Chef infra 安装System Center Endpoint Protection的方法

Chef infra 安装System Center Endpoint Protection的方法,chef-infra,scep,Chef Infra,Scep,我想在Windows 2012服务器中使用Chef Recipe安装System Center Endpoint Protection(SCEP)。我正在使用下面的脚本安装exe文件(scepinstall.exe)。看来这不是正确的食谱。请帮忙 windows_package 'SCEP' do source 'C:/foldername/scepinstall.exe' installer_type :custom options '/Q' end 这会做什么?这与您的期望有什

我想在Windows 2012服务器中使用Chef Recipe安装System Center Endpoint Protection(SCEP)。我正在使用下面的脚本安装exe文件(
scepinstall.exe
)。看来这不是正确的食谱。请帮忙

windows_package 'SCEP' do
  source 'C:/foldername/scepinstall.exe'
  installer_type :custom
  options '/Q'
end

这会做什么?这与您的期望有什么不同?它会继续运行,最后我必须使用任务管理器结束任务。您确定安装程序支持无头或非交互式安装模式吗?我不太确定。这种模式在CloudFormation模板中起作用。我会先检查一下。