Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Created December 6, 2014 21:13
Show Gist options
  • Save guitarrapc/ded2a6118d7582a1b5ea to your computer and use it in GitHub Desktop.
Save guitarrapc/ded2a6118d7582a1b5ea to your computer and use it in GitHub Desktop.
PowerShell DSC Advent Calendar 2014 : Day 6 Configuration の記述 http://tech.guitarrapc.com/entry/2014/12/06/230000
Configuration Service
{
Service WinRM
{
Name = "WinRM"
State = "Running"
StartupType = "Automatic"
}
Service Winmgmt
{
Name = "Winmgmt"
State = "Running"
StartupType = "Automatic"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment