powershell 示例DSC

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 示例DSC相关的知识,希望对你有一定的参考价值。

##Script used in the demo for installing IIS and ASP.NET 4.5



Configuration SkylinesIIS

{

  Node 'localhost'

  {

    #Install IIS - Enabled via Windows feature

    WindowsFeature IIS

    {

      Ensure = "Present"

      Name = "Web-Server"

    }

    #Install ASP.NET 4.5

    WindowsFeature ASP

    {

      Ensure = "Present"

      Name = "Web-Asp-Net45"

    }

  }

}



以上是关于powershell 示例DSC的主要内容,如果未能解决你的问题,请参考以下文章

powershell Zip自定义DSC模块,用于上传到Azure Automation DSC

PowerShell DSC学习资料

powershell DSC复制并使用模块运行本地

powershell DSC推动CIMSession

powershell 演示Dsc101.ps1

MCSA2016_004 - PowerShell DSC -