Skip to content

Instantly share code, notes, and snippets.

@torgro
Created March 13, 2015 21: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 torgro/5ef58305e3bce9a7f6f0 to your computer and use it in GitHub Desktop.
Save torgro/5ef58305e3bce9a7f6f0 to your computer and use it in GitHub Desktop.
configuration Telnet
{
Param(
[String[]]$Computername
)
Foreach ($computer in $computername)
{
Node "$computer"
{
WindowsFeature TelnetClient
{
Ensure = "Present"
Name = "Telnet-client"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment