Skip to content

Instantly share code, notes, and snippets.

@torgro
Created December 8, 2016 21:42
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/ac253a65e853b6b2b96f84a99f5e830e to your computer and use it in GitHub Desktop.
Save torgro/ac253a65e853b6b2b96f84a99f5e830e to your computer and use it in GitHub Desktop.
Configuration ChangeDescriptionConfig
{
Import-DscResource -Name MSFT_xSmbShare
# A Configuration block can have zero or more Node blocks
Node localhost
{
xSmbShare MySMBShare
{
Ensure = "Present"
Name = "MyShare"
Path = "C:\install"
Description = "This is a test SMB Share"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment