windows DHCP根据MAC地址批量导出DHCP服务器中的计算机名,导出到csv

"import-csv -path C:\mac.csv | foreach {
 $a=$_.name
 Get-DhcpServerv4Scope | Get-DhcpServerv4Lease |where {$_.ClientId -like ""$a"" }}  | export-csv c:\computer.csv -NoTypeInformation -encoding utf8"

 

csv文件

name

a1d3g5hef4

windows DHCP根据MAC地址批量导出DHCP服务器中的计算机名,导出到csv

上一篇:Spring web 程序启动流程简单梳理


下一篇:.Net、ASP.Net、C#、VisualStudio之间的关系是什么