首页 > 系统服务 > 详细

Usefull Powershell script

时间:2015-02-05 07:09:17      阅读:236      评论:0      收藏:0      [点我收藏+]

How to get the AD compter OS Version, Created, patch

Get-ADComputer -searchbase ‘OU=domain controllers,DC=abc,DC=COM ‘ -filter * -Properties * | Select-Object Name,OperatingSystem,OperatingSystemServicePack,OperatingSystemVersion,created,@{n="lastLogonDate";e={[datetime]::FromFileTime($_.lastLogonTimestamp)}} | Export-CSV AllWindows.csv -NoTypeInformation -Encoding UTF8

Usefull Powershell script

原文:http://linjiajun.blog.51cto.com/1303870/1611684

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!