Skip to content

Instantly share code, notes, and snippets.

@rchaganti
Created February 27, 2018 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rchaganti/feaf23ade96269925c6ddf97ee757f28 to your computer and use it in GitHub Desktop.
Save rchaganti/feaf23ade96269925c6ddf97ee757f28 to your computer and use it in GitHub Desktop.
startupConfig.ps1
Configuration GCEDemo
{
Import-DscResource -ModuleName PSDesiredStateConfiguration -ModuleVersion 1.1
Node 'localhost'
{
WindowsFeature WebServer
{
Name = 'Web-Server'
Ensure = 'Present'
}
}
}
GCEDemo -OutputPath "$env:Temp\GCEDemo"
Start-DscConfiguration -Wait -Verbose -Path "$env:Temp\GCEDemo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment