2019-12-17 10:26:44 -05:00
|
|
|
|
# Look up computer name from mac address in a file
|
|
|
|
|
# Based on Set-ComputerName from:
|
|
|
|
|
# https://kristopherjturner.com/2017/02/01/automating-computer-naming-after-deploying-windows-10-images/
|
|
|
|
|
|
|
|
|
|
$FileName = "ComputerList.csv"
|
|
|
|
|
|
|
|
|
|
$scriptPath = Split-Path $script:MyInvocation.MyCommand.Path
|
|
|
|
|
|
|
|
|
|
$thisComputerMAC = Get-WmiObject win32_networkadapterconfiguration -Filter 'ipenabled = "true"' | Select-Object MACAddress
|
|
|
|
|
$ComputerList = Import-Csv -Path "$scriptPath\$FileName"
|
|
|
|
|
|
|
|
|
|
# look up computer name by MAC address
|
|
|
|
|
ForEach ($Computer in $ComputerList) {
|
2020-01-03 19:17:30 -05:00
|
|
|
|
Write-Host "$($Computer.CN) $($Computer.MAC) $thisComputerMac"
|
2019-12-17 10:26:44 -05:00
|
|
|
|
If ($thisComputerMAC -match $Computer.MAC) {
|
|
|
|
|
Write-Host "$($Computer.CN) matches the localhost MAC Address: $thisComputerMAC"
|
|
|
|
|
$NewComputerName = $Computer.CN
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# if computer isn’t on list, ask for a name
|
|
|
|
|
If ($Null -eq $NewComputerName) {
|
|
|
|
|
Write-Host "Computer is not found in computer list." -ForegroundColor Red
|
|
|
|
|
$NewComputerName = Read-Host -Prompt "Please enter desired computer name then hit enter"
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-03 19:17:30 -05:00
|
|
|
|
$cred = New-Object System.Management.Automation.PsCredential("SAWTOOTH\Administrator", (ConvertTo-SecureString "REPLACE_WITH_PASSWORD" -AsPlainText -Force))
|
|
|
|
|
|
|
|
|
|
# rename computer and join to domain
|
2019-12-17 10:26:44 -05:00
|
|
|
|
Write-Host "Computer will be renamed to $NewComputerName."
|
2020-01-03 19:17:30 -05:00
|
|
|
|
Rename-Computer -NewName $NewComputerName -Force -Verbose
|
|
|
|
|
Add-Computer -Force -DomainName sawtooth.claremontmakerspace.org -Options JoinWithNewName -Credential $cred
|
|
|
|
|
#Start-Sleep -Seconds 5
|
|
|
|
|
#Restart-Computer
|
|
|
|
|
|
|
|
|
|
# Install Salt
|
|
|
|
|
# Write-Host "Installing Salt with minion name: $NewComputerName."
|
|
|
|
|
# \\ucs\Software\Salt-Minion-2019.2.2-Py3-AMD64-Setup.exe /S /minion-name="$NewComputerName"
|