DSCResources/DSC_NetAdapterState/DSC_NetAdapterState.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
$modulePath = Join-Path -Path (Split-Path -Path (Split-Path -Path $PSScriptRoot -Parent) -Parent) -ChildPath 'Modules' # Import the Networking Common Modules Import-Module -Name (Join-Path -Path $modulePath ` -ChildPath (Join-Path -Path 'NetworkingDsc.Common' ` -ChildPath 'NetworkingDsc.Common.psm1')) Import-Module -Name (Join-Path -Path $modulePath -ChildPath 'DscResource.Common') # Import Localization Strings $script:localizedData = Get-LocalizedData -DefaultUICulture 'en-US' <# .SYNOPSIS Gets the current state of a network adapter. .PARAMETER Name Specifies the name of the network adapter. .PARAMETER State Specifies the desired state for the network adapter. Not used in Get-TargetResource. #> function Get-TargetResource { [CmdletBinding()] [OutputType([Hashtable])] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter(Mandatory = $true)] [ValidateSet('Enabled', 'Disabled')] [System.String] $State ) Write-Verbose -Message ( @( "$($MyInvocation.MyCommand): " $script:localizedData.CheckingNetAdapterMessage ) -join '') try { $netAdapter = Get-NetAdapter -Name $Name -ErrorAction Stop } catch { Write-Warning -Message ( @( "$($MyInvocation.MyCommand): " $script:localizedData.NetAdapterNotFoundMessage -f $Name ) -join '') } if ($netAdapter) { Write-Verbose -Message ( @( "$($MyInvocation.MyCommand): " $($script:localizedData.NetAdapterTestingStateMessage -f $Name) ) -join '') <# Using NET_IF_ADMIN_STATUS as documented here: https://docs.microsoft.com/en-us/windows/desktop/api/ifdef/ne-ifdef-net_if_admin_status #> $enabled = [Microsoft.PowerShell.Cmdletization.GeneratedTypes.NetAdapter.NET_IF_ADMIN_STATUS]::Up $disabled = [Microsoft.PowerShell.Cmdletization.GeneratedTypes.NetAdapter.NET_IF_ADMIN_STATUS]::Down $result = @{ Name = $Name State = switch ($netAdapter.AdminStatus) { $enabled { 'Enabled' } $disabled { 'Disabled' } default { 'Unsupported' } } } return $result } } <# .SYNOPSIS Sets the NetAdapterState resource state. .PARAMETER Name Specifies the name of the network adapter. .PARAMETER State Specifies the desired state for the network adapter. #> function Set-TargetResource { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter(Mandatory = $true)] [ValidateSet('Enabled', 'Disabled')] [System.String] $State ) Write-Verbose -Message ( @( "$($MyInvocation.MyCommand): " $script:localizedData.CheckingNetAdapterMessage ) -join '') try { $netAdapter = Get-NetAdapter -Name $Name -ErrorAction Stop } catch { Write-Error -Message ( @( "$($MyInvocation.MyCommand): " $script:localizedData.NetAdapterNotFoundMessage -f $Name ) -join '') } if ($netAdapter) { try { if ($State -eq 'Disabled') { Disable-NetAdapter -Name $Name -Confirm:$false -ErrorAction Stop } else { Enable-NetAdapter -Name $Name -ErrorAction Stop } } catch { Write-Error -Message ( @( "$($MyInvocation.MyCommand): " $($script:localizedData.NetAdapterSetFailedMessage -f $Name, $State, $_) ) -join '') } } } <# .SYNOPSIS Tests if the NetAdapterState resource state is desired state. .PARAMETER Name Specifies the name of the network adapter. .PARAMETER State Specifies the state of the network adapter. #> function Test-TargetResource { [CmdletBinding()] [OutputType([System.Boolean])] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter(Mandatory = $true)] [ValidateSet('Enabled', 'Disabled')] [System.String] $State ) Write-Verbose -Message ( @( "$($MyInvocation.MyCommand): " $($script:localizedData.NetAdapterTestingStateMessage -f $Name) ) -join '') $currentState = Get-TargetResource @PSBoundParameters if ($currentState) { Write-Verbose -Message ( @( "$($MyInvocation.MyCommand): " $($script:localizedData.NetAdapterStateMessage -f $Name, $currentState.State) ) -join '') return $currentState.State -eq $State } return $false } |