我正在尝试编写一个 powershell 脚本来删除非常旧的 AD 帐户。
它可以工作,但是当我从 PowershellGUI 运行它时,它会提示您单击是/否。我查看了PowerGUI 的 Remove-QADObject 文档,但没有提到静默模式。有谁知道解决方法?
# Get the date that is about 6 months ago from today.
$dateObj = (Get-Date).AddDays(-180)
$oldADUsers = Get-QADUser -SearchRoot "OU=expired_test,OU=Students,DC=..." -AccountExpiresBefore $dateObj
foreach ($user in $oldADUsers)
{
Remove-QADObject $user
}