I write some useful information and lessons learnt about SCCM, MDT, SCOM, Exchange, Lync, Windows 7/8, Windows servers, Hyper-V, Vmware
Szukaj na tym blogu
niedziela, 6 maja 2012
Dodawanie komputerów do bazy MDT - powershell
Set-ExecutionPolicy Unrestricted
Import-Module –name C:\Scripts\MDTDB.psm1
Connect-MDTDatabase –sqlServer hyd-srv1 –instance ?? –database MDT
Get-MDTComputer
Name,MAC
comp1,00:11
comp2,00:22
$machines = Import-Csv C:\scripts\machines.txt
New-MDTComputer –macAddress $machines[1].mac –settings @{OSInstall='YES';OSDComputerName=$machines[1].name}
For ($i=1; $i -le $machines.count; $i++)
{
New-MDTComputer -macAddress $machines[$i-1].mac -settings @{ OSInstall='YES'; OSDComputerName=$machines[$i-1].name;}
}
Subskrybuj:
Komentarze do posta (Atom)
Brak komentarzy:
Prześlij komentarz