Who included a computer in the domain
Who included a computer in the domain

Yetkili bir kullanıcı ile windows\debug klasörü altındaki NetSetup.log dosyasını inceler, Ağınızdaki tüm bilgisayarların C:\ yolunu paylaşıma açmayı unutmayınız. Examine the NetSetup.log file under the windows\debug folder with an effective user. Do not forget to share the C:\ path of all computers in your network.
Powershell ISE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$NoInfo = $null
$Offline = $null
$List = $null
#Get-Content getir.txt | foreach {
Get-ADComputer -Filter * | foreach {
$FQDN = $_.DNSHostName
$Path = "\\$FQDN\c`$\Windows\debug\NetSetup.log"
if (Test-Connection $FQDN -Count 1 -ErrorAction SilentlyContinue) {
if (Test-Path $Path) {
write-host "`n`nChecking $FQDN..."
$User = ($($(Select-String -Path $Path -Pattern "lpAccount: " -CaseSensitive) -split " ")[3])
$User
[array]$List += Write-Output $FQDN";"$User
}
else {[array]$NoInfo += $FQDN}
}
else {[array]$Offline += $FQDN}
}
$list
This post is licensed under CC BY 4.0 by the author.