Skip to content

Instantly share code, notes, and snippets.

@vniklas
Forked from jjgriff93/IISInstall.ps1
Created August 30, 2021 11:07
Show Gist options
  • Select an option

  • Save vniklas/54e53cf9abe45ac48b0eea7154bead81 to your computer and use it in GitHub Desktop.

Select an option

Save vniklas/54e53cf9abe45ac48b0eea7154bead81 to your computer and use it in GitHub Desktop.
Windows Server 2016 - PowerShell DSC Config File - IIS Web Server
configuration IISInstall
{
node "localhost"
{
WindowsFeature IIS
{
Ensure = "Present"
Name = "Web-Server"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment