An Azure service that is used to provision Windows and Linux virtual machines.
Yes, your observation is right and as mentioned by TP as well, Windows Server 2025 Standard Edition is not available as a ready-made image in the Azure Marketplace. This is intentional and aligns with Microsoft’s cloud licensing and servicing model.
If you specifically need Windows Server 2025 Standard Edition, you can use it in Azure by creating a custom image. The process is:
- Install Windows Server 2025 Standard in your own environment (for example, on a local virtual machine).
- Prepare the operating system according to Microsoft requirements:
- Run Sysprep with the Generalize option.
- Ensure the OS disk is a fixed-size VHD file (VHDX is not supported).
- Remove persistent routes and configure the appropriate SAN policy.
- Upload the VHD file to Azure.
- Create a managed image from the uploaded VHD.
- Deploy new Azure virtual machines using that custom image.
For more details, please refer: https://learn.microsoft.com/en-us/azure/virtual-machines/windows/prepare-for-upload-vhd-image
If you have any further questions, feel free to reach out.
If this was helpful, please remember to click the "Accept Answer" button.