[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[转载代码] [PowerShell每日技巧]远程获取MAC地址(20131119)

Here is an easy way to get the MAC address, even from a remote machine:

PS > getmac.exe /S 127.0.0.1 /FO CSV | ConvertFrom-CSV

Physical Address                                  Transport Name
----------------                                  --------------
68-A8-6D-0B-5F-CC                                 \Device\Tcpip_{6BCF0C7B-562E-4DE5-97...
N/A                                               Hardware not present
N/A                                               Hardware not present


Simply replace the IP address with the one you are interested in. You may need appropriate Admin privileges to access the information, of course.

http://powershell.com/cs/blogs/tips/archive/2013/11/19/getting-mac-address-remotely.aspx

返回列表