Hi, I am struggling since 2 days to make this simple command works, even I posted a thread to MSDN forums as I expected that it will be resolved or get hint to fix it but this is not the case (https://social.msdn.microsoft.com/Forums/azure/en-US/89ee1874-3753-4080-988f-8fb1b99f390e/newazurequickvm-internalerror-the-server-encountered-an-internal-error-please-retry-the?forum=WAVirtualMachinesforWindows)
I trying to create a VM as follows, using 2 different options but non is working always getting the error :
New-AzureQuickVM : InternalError : The server encountered an internal error. Please retry the request.
At line:1 char:1
- New-AzureQuickVM -Windows -ImageName $imagename -InstanceSize “ExtraSmall” -Pass …
-
+ CategoryInfo : CloseError: (:) [New-AzureQuickVM], CloudException + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.ServiceManagement.IaaS.PersistentVMs.NewQuickVM
Here are the 2 scripts
$location = “North Europe”
$imagename = “a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201503.01-en.us-127GB.vhd”
CREATE A NEW VM IN A NEW CLOUD SERVICE
New-AzureQuickVM
-Windows
-ImageName $imagename
-InstanceSize “ExtraSmall”
-Location $location
-Password “myâssword”
-Name “sieracDevOps”
-ServiceName “sieracDevOpsPro”
-AdminUsername “myuser”
CREATE A NEW VM IN A EXISTING CLOUD SERVICE
New-AzureQuickVM
-Windows
-ImageName $imagename
-InstanceSize “ExtraSmall”
-Password “myâssword”
-Name “sieracDevOps2”
-ServiceName “sieracDevOpsPro”
-AdminUsername “myuser”
I even went to the Azure portal, created new VM successfully, then delet it and tried again with the same cloud service, now way, always the same error. What is really annoying is that it does not say what is the problem
Thanks for your help