1. 使用win32diskimager将Z2的系统镜像文件写入tf卡,
  2. tf卡插入Z2的卡槽,
  3. 连接网线
  4. Z2接上电源线
  5. Z2打开电源
  6. 等待网卡等亮起
  7. 配置win10网卡静态地址
    1. 以管理员模式打开一个powershell
    2. 查找你的有线网卡
      1. 输入$var = Get-NetAdapter -InterfaceDescription "*Ethernet*" -Physical
      2. 输入$var = Get-NetAdapter -InterfaceDescription "*PCI*" -Physical
      3. 确定你的网卡描述是哪一个
    3. 输入$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