Hello Laxmanprabhu
Thanks for sharing more details:
The error message you are receiving is because the image name you are using is incorrect. The image name should be "Win10" instead of "Windows 10 Pro, version 22H2 - x64 Gen2".
Please try the following PowerShell script to create a Windows 10 VM:
New-AzVm `
-ResourceGroupName "Test_group" `
-Name "myVM2" `
-Location "EastUS" `
-VirtualNetworkName "WhizTech" `
-SubnetName "default" `
-SecurityGroupName "whiz-Ind" `
-PublicIpAddressName "whizvm-2" `
-ImageName "Win10" `
-Size "Standard_B2s" `
-Credential (Get-Credential) `
-OpenPorts 3389
This script creates a new Windows 10 VM in the "EastUS" region, using the "WhizTech" virtual network and "default" subnet. It also creates a new public IP address and opens port 3389 for remote desktop access.
Please note that you will be prompted to enter your Azure credentials when you run this script.
Hope this helps.
If the suggested response helped you resolve your issue, please 'Accept as answer', so that it can help others in the community looking for help on similar topics.