An Azure service that is used to provision Windows and Linux virtual machines.
Hello Krzysztof Rejment,
We understand how frustrating it can be to encounter issues with the Azure Portal with each option you try.
We sincerely apologize for the inconvenience caused by the Azure Portal UI problems; we'll request you to share your feedback here for the same: https://feedback.azure.com/
To fix the screen freeze issue, it 'd be worth trying to clear browser history, cookies, cache and retrying from fresh login to the account or trying to access the Azure Portal from different browser or incognito mode (private window) or trying Guest profile of your browser to see if that also runs into same issue.
Workaround to create Azure VM:
To get yourself immediately unblocked from creating an Azure Virtual Machine, you could try Azure CLI commands to create a VM from Azure Portal Cloudshell (also known as Console). For more details, see: https://learn.microsoft.com/en-us/azure/virtual-machines/linux/quick-create-cli
Sample command:
az vm create -n MyVm -g MyRG --image Ubuntu2204 --size Standard_B2ms
Please note here:
->MyVm is the name of my virtual machine.
->MyRG is the name of my resource group in which the virtual machine is going to be created.
->Ubuntu2204 is the OS image with which MyVm is going to be created.
-> Stanard_B2ms is the VM size of which myVm is going to be created.
More such sample commands are added as examples listed on: ttps://learn.microsoft.com/en-us/cli/azure/vm?view=azure-cli-latest#az-vm-create-examples
Let me know if there is any blocker faced while creating VM using Azure CLI command!!