PowerShell小技巧之配置机器的静态IP
程序员文章站
2022-05-07 17:02:10
家用电脑安装了一台虚拟机,默认没有配置网络,本来是想利用powershell启用无线网络,可是安装过程需要在线获取一些文件,所以失败,无奈只能配置静态ip地址了,参考了ed...
家用电脑安装了一台虚拟机,默认没有配置网络,本来是想利用powershell启用无线网络,可是安装过程需要在线获取一些文件,所以失败,无奈只能配置静态ip地址了,参考了ed wilson的:use powershell to configure static ip and dns settings
$wmi = get-wmiobject win32_networkadapterconfiguration -filter "ipenabled = 'true'" $wmi.enablestatic("192.168.1.15", "255.255.255.0") $wmi.setgateways("192.168.1.1", 1) $wmi.setdnsserversearchorder("8.8.8.8")