mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
17 lines
453 B
PowerShell
17 lines
453 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Disables the Windows optional features TelnetClient and LegacyComponents and removes all
|
|
files associated with these features.
|
|
#>
|
|
Configuration WindowsOptionalFeatureSet_Disable
|
|
{
|
|
Import-DscResource -ModuleName 'PSDscResources'
|
|
|
|
WindowsOptionalFeatureSet WindowsOptionalFeatureSet1
|
|
{
|
|
Name = @('TelnetClient', 'LegacyComponents')
|
|
Ensure = 'Absent'
|
|
RemoveFilesOnDisable = $true
|
|
}
|
|
}
|