powershell 设备的基本配置。为适配器分配IP,设置DNS IP和网关,重命名和加入域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 设备的基本配置。为适配器分配IP,设置DNS IP和网关,重命名和加入域相关的知识,希望对你有一定的参考价值。

$compname = "20161"
$ip = "10.0.2.4"

#find a way to get the interfaceindex
$index = Get-NetAdapter | Select-Object -ExpandProperty ifIndex
#now set the ip of that index adapter
New-NetIPAddress -InterfaceIndex $index -IPAddress $ip -PrefixLength 16 -DefaultGateway 10.0.0.1
#now set the DNS for that index adapter
Set-DnsClientServerAddress -InterfaceIndex $index -ServerAddresses 10.0.3.190
$cred = Get-Credential -UserName domain\user -Message "Enter domain creds"
Add-Computer -DomainName ark.local -Credential $cred -NewName $compname -Restart

以上是关于powershell 设备的基本配置。为适配器分配IP,设置DNS IP和网关,重命名和加入域的主要内容,如果未能解决你的问题,请参考以下文章

使用 Powershell 删除不存在的网络适配器

Linux 内核 内存管理内存管理架构 ③ ( Linux 内核中的内存管理模块 | 页分配器 | 不连续页分配器 | 内存控制组 | 硬件设备内存管理 | MMU | 页表缓存 | 高速缓存 )

Linux 内核 内存管理内存管理架构 ③ ( Linux 内核中的内存管理模块 | 页分配器 | 不连续页分配器 | 内存控制组 | 硬件设备内存管理 | MMU | 页表缓存 | 高速缓存 )

如果 IP 地址已配置,如何使用 Powershell 脚本检查

前端适配

TensorFlow 自定义分配器和从 Tensor 访问数据