I've created a PowerCLI script able to create the virtual machine and link the ISO image. I managed to load the ISO image using:
# Virtual Center Details
$server_address = "xxx"
$username = "xxx"
$password = "xxx"
Get-VIServer -Server $server_address -Protocol https -User $username -Password $password
foreach ($vm in $array)
{
$vm = "VirtualMachine" New-VM -name $vm -DiskMB 20000 -memoryMB 2000 New-CDDrive -VM $vm -ISOPath "[datastore1] ISO/WINXP_X86_SP3_CD.ISO" -StartConnected:$true -Confirm:$false New-Disk -CapacityKB (10*1024)
Start-vm -vm $vm
}
Above is the powercli script I used to create the vm and link it to my ISO image. But the problem is once the installation starts, the error occurs stating that the setup did not find any hard disk drives installed in your computer. I am predicting that I did not assign a hard disk or create a new hard disk.
I have the following error installing my operating system in my virtual machine when I run it using VMware vSphere client.
Setup did not find any hard disk drives installed in your computer. Make sure any hard disk drives are powered on and properly connected to your computer, and that any disk-related hardware configuration is correct. This may involve running a manufacturer-supplied diagnostic or setup program. Setup cannot continue. To quit Setup, press F3
get-vm $vm | get-harddiskreturns? – empo Jun 8 '11 at 12:10