文章分类 -  Powershell""Bat

批处理bat echo中文乱码完美解决方法
摘要:@echo off REM 声明采用UTF-8编码 chcp 65001 echo test echo 中文测试 pause @echo off REM 声明采用UTF-8编码 chcp 65001 echo test echo 中文测试 pause 阅读全文

posted @ 2019-08-13 09:16 Areon 阅读(5042) 评论(0) 推荐(0)

修改IP地址的PowerShell $wmi = Get-WmiObject win32_networkadapterconfiguration -filter "ipenabled = 'true'" $wmi.EnableStatic("10.0.0.15", "255.255.255.0") $wmi.SetGateways("10.0.0.1", 1) $wmi.SetDNSServ
摘要:修改IP地址的PowerShell $wmi = Get-WmiObject win32_networkadapterconfiguration -filter "ipenabled = 'true'" $wmi.EnableStatic("10.0.0.15", "255.255.255.0") 阅读全文

posted @ 2019-01-02 19:25 Areon 阅读(809) 评论(0) 推荐(0)

导航