标签: c# asp.net .net powershell dsc
我正在尝试在DSC文件中为.NET Framework 4.5.2设置WindowsFeature,但默认情况下此版本不存在于计算机中。如何通过在脚本中定义配置来远程安装它? 对于ASP.Net 4.5,我有:
WindowsFeature Web-Asp-Net45 { Name = "Web-Asp-Net45" Ensure = "Present" }