码迷,mamicode.com
首页 > 其他好文 > 详细

删除用户配置文件 (正则表达式)

时间:2015-05-11 10:24:21      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

$parttern = "\b\d{6}\b"
$today = Get-Date
$hostname = "cnhzpd-47d173x"
$profiles = Get-WmiObject -Class win32_userprofile -ComputerName $hostname | Select-Object -Property LocalPath, @{N=‘time‘; E={$_.ConverttoDateTime($_.lastusetime)}}, @{N=‘Delta‘;E={$today - $_.ConverttoDateTime($_.lastusetime)}} | where {$_.localpath.substring(9,6) -match $parttern -and $_.delta -gt ‘6.0:0:0‘}
foreach($profile in $profiles) { (Get-WmiObject -class Win32_UserProfile -ComputerName $hostname | where {$_.localpath -eq $profile.localpath}).delete()
}

 

删除用户配置文件 (正则表达式)

标签:

原文地址:http://www.cnblogs.com/IvanChen/p/4493714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!