我有一个脚本,其中列出了以下 Active Directory 中所有主机的本地管理员:
$Searcher = New-Object DirectoryServices.DirectorySearcher([ADSI]"")
$Searcher.Filter = "(objectClass=computer)"
$Computers = ($Searcher.Findall())
md C:\All_Local_Admins
Foreach ($Computer in $Computers)
{
$Path=$Computer.Path
$Name=([ADSI]"$Path").Name
write-host $Name
$members =[ADSI]"WinNT://$Name/Administrators"
$members = @($members.psbase.Invoke("Members"))
$members | foreach {$_.GetType().InvokeMember("Name", 'GetProperty',
$null, $_, $null) | out-file -append C:\All_Local_Admins\$name.txt
}
}
该脚本将主机名输出为 txt 文件(HOST1.txt、HOST2.txt 等)
我想要的是获取一个以当天日期命名的文本文件(例如:05082014.txt --> 此文件将包括所有主机的本地管理员)
我该如何处理这个问题?
非常感谢。
答案1
你可以这样做:
$fileName = (Get-Date -Format ddMMyyyy) + ".txt"
$location = "C:\All_Local_Admins\"
New-Item -ItemType file -Name $fileName -Path $location
并将你的替换out-file
为:
out-file -append -FilePath (Join-Path $location $fileName)