環境
OS:Windows10
.Net Framework:4.7
PowerShellのバージョン:5.1.17763.1007
ソースコード
ネットワークの設定を実施します。
- インターフェース名:Ethernet0
- IPアドレス:192.168.1.100
- サブネットマスク:255.255.255.0
- デフォルトゲートウェイ:192.168.1.1
Get-NetAdapter -Name "Ethernet0" | New-NetIPAddress -AddressFamily IPv4 -IPAddress 192.168.1.100 -PrefixLength 24 -DefaultGateway 192.168.1.1
動作確認
ネットワークの設定が完了しました。
PS C:\Users\Administrator> Get-NetAdapter -Name "Ethernet0" | New-NetIPAddress -AddressFamily IPv4 -IPAddress 192.168.1.
100 -PrefixLength 24 -DefaultGateway 192.168.1.1
IPAddress : 192.168.1.100
InterfaceIndex : 4
InterfaceAlias : Ethernet0
AddressFamily : IPv4
Type : Unicast
PrefixLength : 24
PrefixOrigin : Manual
SuffixOrigin : Manual
AddressState : Tentative
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : ActiveStore
IPAddress : 192.168.1.100
InterfaceIndex : 4
InterfaceAlias : Ethernet0
AddressFamily : IPv4
Type : Unicast
PrefixLength : 24
PrefixOrigin : Manual
SuffixOrigin : Manual
AddressState : Invalid
ValidLifetime : Infinite ([TimeSpan]::MaxValue)
PreferredLifetime : Infinite ([TimeSpan]::MaxValue)
SkipAsSource : False
PolicyStore : PersistentStore