Skip to content

Instantly share code, notes, and snippets.

@jamesallen-cm
Last active August 29, 2015 14:23
Show Gist options
  • Save jamesallen-cm/7558a3504c27b31dc3a7 to your computer and use it in GitHub Desktop.
Save jamesallen-cm/7558a3504c27b31dc3a7 to your computer and use it in GitHub Desktop.
Creates a config for SMTP. This will be applied to all computers that have the associated application guid
configuration SMTP {
Import-DscResource -ModuleName @{ModuleName="PSDesiredStateConfiguration";ModuleVersion="1.1"}
Node HTTPComputers {
WindowsFeature SMTP{
Name = 'SMTP-Server'
Ensure = 'Present'
}
}
}
SMTP -OutputPath C:\DSC\HTTP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment