Skip to content

Instantly share code, notes, and snippets.

@jeffpatton1971
Created December 30, 2013 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jeffpatton1971/8187784 to your computer and use it in GitHub Desktop.
Save jeffpatton1971/8187784 to your computer and use it in GitHub Desktop.
This adds the DCS-Service as a configuration
Configuration DSCPullServer
{
param
(
[string]$ComputerName
)
Node $ComputerName
{
WindowsFeature DSCService
{
Name = "DSC-Service"
Ensure = "Present"
Source = "C:\Windows\SxS"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment