Examples/Resources/NetAdapterRsc/3-NetAdapterRsc_DisableRscAll_Config.ps1
<#PSScriptInfo
.VERSION 1.0.0 .GUID 2763e266-d03a-4736-b7bf-3108cfeadc4e .AUTHOR Microsoft Corporation .COMPANYNAME Microsoft Corporation .COPYRIGHT .TAGS DSCConfiguration .LICENSEURI https://github.com/PowerShell/NetworkingDsc/blob/master/LICENSE .PROJECTURI https://github.com/PowerShell/NetworkingDsc .ICONURI .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES First version. .PRIVATEDATA 2016-Datacenter,2016-Datacenter-Server-Core #> #Requires -module NetworkingDsc <# .DESCRIPTION This configuration disables RSC on the network adapter. #> Configuration NetAdapterRsc_DisableRscAll_Config { Import-DSCResource -ModuleName NetworkingDsc Node localhost { NetAdapterRsc DisableRscAll { Name = 'Ethernet' Protocol = 'All' State = $false } } } |