我有一个简单的 Powershell 代码,如果服务器启动,它会 ping 服务器,然后禁用本地管理员帐户。如何将结果输出到日志文件,以便记录我禁用的内容。
这是我到目前为止所拥有的
$computers = Get-ADComputer -filter {OperatingSystem -like "Windows Server*"} |
ForEach ($computer in $computers) {
$rtn = Test-Connection -CN $computer -Count 1 -BufferSize 16 -Quiet
IF($rtn -match 'True') {
write-host -ForegroundColor green $computer | Disable-localUserAccount -ComputerName $computer -username Administrator
} ELSE {
Write-host -ForegroundColor red $computer
}
}