How do I make the following script work? Currently I am able to create a new virtual machine in my server. I wish to also load the Windows ISO image and do an unattended installation in the virtual machine. How shall I edit the script to make this work?

# Virtual Center Details
$server_address = "xxxxx"
$username = "xxxxx"
$password = "xxxxx"
$iso = "WINXP_X86_SP3_CD.ISO"

Get-VIServer -Server $server_address -Protocol https -User $username -Password $password

foreach ($vmm in $array)
{
    $vmm = "VirtualMachine"

    New-VM -name $vmm -DiskMB 20000 -memoryMB 2000
    Get-VM $vmm | Get-CDDrive | Set-CDDrive -IsoPath $iso -StartConnected $true -Confirm:$false
    $value = "5000"
    $vm = Get-VM $vmname | Get-View
    $vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec
    $vmConfigSpec.BootOptions = New-Object VMware.Vim.VirtualMachineBootOptions
    $vmConfigSpec.BootOptions.BootDelay = $value
    $vm.ReconfigVM_Task($vmConfigSpec)

    Start-vm -vm $vmname
}
link|improve this question

mmm, where $array comes from? Why Get-VIServer? Did you mean Connect-VIServer? Which problems are you encountering with your script? – empo Jun 2 '11 at 20:28
what ReconfigVM_Task is? – empo Jun 2 '11 at 20:42
@empo yes it is get-viserver because of the version of the powercli. There is a slight change in the commands. The rest I just copied and paste it. btw my issue is with the ISO PATH image. I am getting the error "Invalid datastore format" when i run the script using the powercli command prompt. – user448402 Jun 3 '11 at 0:51
feedback

1 Answer

up vote 1 down vote accepted

my issue is with the ISO PATH image. I am getting the error "Invalid datastore format"

You are specifying isopath using IsoPath parameter, which is the datastore path to the ISO, not simply the ISO name. From your code you are not indicating any datastore.

The syntax for a datastore path is:

"[yourdatastore] IsoFolder\$iso"

Example got from PowerCLI reference online:

$cd = New-CDDrive -VM $vm -ISOPath "[sof-20666-esx:storage1] ISO\testISO.iso"
Set-CDDrive -CD $cd -StartConnected -Connected
link|improve this answer
@empo how do you check -ISOPath "[sof-20666-esx:storage1] what datastore am I using? I am currently using vSphere Client Version 4.1.0 and VMware ESXI Version 4.1.0. I connect to my server using this. – user448402 Jun 3 '11 at 8:21
where your ISO resides? – empo Jun 3 '11 at 8:24
@empo thanks, it manages to read the cd rom and the iso image. but how do you use the powercli scripts to activate the Device Status (connected and connect at power on) then only the operating system will install. – user448402 Jun 3 '11 at 8:46
I've slitghtely modified the example to include activation of Device Status as you have asked for. Hope it helps. – empo Jun 3 '11 at 10:15
@empo you have been a great help. thank you so much. but can i ask you another question here itself. i have already posted the question but i feel you seem to be the right person to direct this question to. – user448402 Jun 4 '11 at 10:31
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.