我所在的部门大概管理了300+台Windows终端,最近开始采用域的方式来进行管理。(别笑我们土,原来手工修改Windows口令太痛苦了)
现在的任务是想在域控服务器中列出纳入域管理的所有机器,以及最近登陆的时间。
可以通过PowerShell来进行查询。
1 | Get-ADComputer -Filter * -Property * | Format-Table Name,OperatingSystem,OperatingSystemServicePack,OperatingSystemVersion -Wrap –Auto |
查询的结果是这样的。
参考资料:
1、How to get all active computer list in domain with some attributes?
2、Active Directory Reference Sheet
3、Oldcmp工具