- 使用win32diskimager将Z2的系统镜像文件写入tf卡,
- tf卡插入Z2的卡槽,
- 连接网线
- Z2接上电源线
- Z2打开电源
- 等待网卡等亮起
- 配置win10网卡静态地址
- 以管理员模式打开一个powershell
- 查找你的有线网卡
- 输入
$var = Get-NetAdapter -InterfaceDescription "*Ethernet*" -Physical
- 输入
$var = Get-NetAdapter -InterfaceDescription "*PCI*" -Physical
- 确定你的网卡描述是哪一个
- 输入
$var = Get-NetAdapter -InterfaceDescription "*Ethernet*" -Physical | select -ExpandProperty Name; Remove-NetIPAddress -InterfaceAlias $var -Confirm:$false; New-NetIPAddress -InterfaceAlias $var -AddressFamily IPv4 -IPAddress 192.168.2.100 -PrefixLength 24