我正在尝试创建PowerShell脚本,以删除X天前的Windows计算机(域环境)上的用户配置文件。 (大概会花费X = 60天左右)这是我的代码:
thread_executor.shutdown(wait=False)
for t in thread_executor._threads:
terminate_thread(t)
我的脚本运行得很好,但是有一个问题。我使用字段#Requires -RunAsAdministrator
# Program to delete user profiles through Powershell older than 30 days
# User profiles older than today's date - $ of days will be deleted
$numberOfDays = 30
# Number of digits in local path string to just after C:\users\
$pos = 9
# Get all user profiles where the last log on time is older than the current date - $numberOfDays
$profileStructsToRemove = Get-CimInstance Win32_UserProfile |
Where-Object {$_.LastUseTime -lt $(Get-Date).Date.AddDays(-$numberOfDays) } |
Where-Object {$_.LocalPath.ToUpper() -ne 'C:\USERS\ADMINISTRATOR'} |
Where-Object {$_.LocalPath.ToUpper() -ne 'C:\USERS\PUBLIC'}
foreach ($struct in $profileStructsToRemove)
{
$userProfileToDelete = $struct.LocalPath.Substring($pos, $struct.LocalPath.Length - $pos)
Write-Host "Currently deleting profile...$userProfileToDelete..."
(Get-WmiObject Win32_UserProfile -Filter "localpath='C:\\Users\\$userProfileToDelete'").Delete()
}
作为最重要的部分,仅检索早于LastUseTime
的配置文件。问题是检查完此字段后,但仅运行numberOfdays
,我查看了每个配置文件的所有Get-CimInstance Win32_UserProfile
条目。甚至一些离开公司(几个月未登录)的员工个人资料在一周前都有LastUseTime
个条目。奇怪的是,这些配置文件中的许多配置文件都精确到了LastUseTime。基本上,这个领域对我来说似乎毫无用处。更改此字段的不是用户。我不确定是否有更新或系统中的某些内容。
我需要什么:为LastUseTime
寻找某种替代品。我已经能够找到计算机上帐户的上次登录时间,但仅适用于本地用户。在域环境中,这基本上排除了所有人。然后,我研究了查询AD帐户(通过LastUseTime
的问题,但这为我提供了个人资料本身(根据我的理解)而不是特定计算机的最后登录信息。
我只是无法找到一种方法来在特定计算机的配置文件中查找用户的上次登录或上次使用日期。 AD-User
字段已被证明是无用的。 (仍然不确定会发生什么变化)