feiyucha

#开启DHCP协议

  Get-NetIPInterface -Dhcp Disabled|Set-NetIPInterface -Dhcp Enabled 

#开启本机上所有博通网卡的DHCP

  Get-WmiObject -Class win32_networkadapterconfiguration -Filter "description like \'Broadcom%\'" |Invoke-WmiMethod -Name EnableDHCP  

#在接口名称为 ‘WLAN’  启用 DHCP

  netsh interface ipv4 set address name="WLAN" source=DHCP  

  ipconfig /renew wlan     #执行刷新操作:  

 

分类:

技术点:

相关文章:

  • 2021-09-14
  • 2021-11-29
  • 2021-12-22
  • 2022-01-01
  • 2021-09-19
  • 2022-01-07
  • 2021-12-22
  • 2021-08-07
猜你喜欢
  • 2021-11-05
  • 2021-10-15
  • 2021-12-09
  • 2021-12-07
  • 2021-12-02
  • 2021-11-20
  • 2021-12-13
相关资源
相似解决方案