Hi, I recently uploaded a VHD with W2008 Enterprise to my Azure account by PowerShell, no errors no warnings.
When I try to create a new virtual machine can't find my VHD. I went to: virtual Machines, New, From Gallery, My Images. I tried all options but nothing.
What I'm missing?
here my script:
PS C:\Users\administrator.RA>
$sourceVHD = 'E:\Tools\6.1.7601.17514.amd64fre.win7sp1_rtm.101119-1850.ServerEnterprise.en-US.vhd'
$destinationVHD = 'http://xxxxx.blob.core.windows.net/xxxxx/6.1.7601.17514.amd64fre.win7sp1_rtm.101119-1850.ServerEnterprise.en-US.vhd';
Add-AzureVhd -LocalFilePath $sourceVHD -Destination $destinationVHD
Add-AzureDisk -DiskName '6.1.7601.17514.amd64fre.win7sp1_rtm.101119-1850.ServerEnterprise.en-US.vhd' -MediaLocation $destinationVHD -Label '6.1.7601.17514.amd64fre.win7sp1_rtm.101119-1850.ServerEnterprise.en-US.vhd'
THANKS!!