Files
PowerShell-PSDscResources/Examples/Sample_WindowsOptionalFeatureSet_Enable.ps1
T
2016-12-15 19:55:13 -08:00

18 lines
555 B
PowerShell

<#
.SYNOPSIS
Enables the Windows optional features MicrosoftWindowsPowerShellV2 and
Internet-Explorer-Optional-amd64 and outputs a log of the operations to a file at the path
'C:\LogPath\Log.txt'.
#>
Configuration WindowsOptionalFeatureSet_Enable
{
Import-DscResource -ModuleName 'PSDscResources'
WindowsOptionalFeatureSet WindowsOptionalFeatureSet1
{
Name = @('MicrosoftWindowsPowerShellV2', 'Internet-Explorer-Optional-amd64')
Ensure = 'Present'
LogPath = 'C:\LogPath\Log.txt'
}
}