Eventos
29 abr, 2 p.m. - 30 abr, 7 p.m.
Únase al evento virtual definitivo de Windows Server el 29 y 30 de abril para sesiones técnicas detalladas y preguntas y respuestas en vivo con los ingenieros de Microsoft.
Regístrate ahoraEste explorador ya no es compatible.
Actualice a Microsoft Edge para aprovechar las características, las actualizaciones de seguridad y el soporte técnico más recientes.
Learn how to create a bootable USB drive or DVD that can be used to install Windows Server on your devices. Creating a Windows Server installation media is a crucial step in setting up a new server or upgrade from an existing one. This article aims to guide you on how to create installation media and install Windows Server using either the Server Core or Desktop Experience install options.
Setup media for the target version of Windows Server can be obtained from Original Equipment Manufacturer (OEM), Retail, Visual Studio subscription, and the Volume Licensing Service Center (VLSC) channels. Your device must also not be running in Azure. If you want to install Windows Server in Azure, see Quickstart: Create a Windows virtual machine in the Azure portal. The following are required before installing Windows Server:
Hardware
Software
Nota
For users who desire to install Windows Server in a virtual environment through Windows Hyper-V, the minimum RAM requirements differ. To learn more, see the Hardware requirements for Windows Server components tab.
Generally, creating a bootable USB drive can be performed using the diskpart.exe utility. An alternative to manually preparing your USB drive, users can run the following PowerShell script to make the USB drive bootable. The Windows Server installation ISO file must be mounted before running this script. To mount the ISO file, perform the following steps:
Locate your Windows Server installation ISO file.
Right-click on your ISO file and select Mount.
Mounting the ISO file creates a virtual optical drive, with its own drive letter, where users can migrate the ISO contents to their USB drive.
Once you plug in your USB drive, it should provide you with a drive letter. Once you know the drive letter of both the USB drive and mounted ISO, run one of the following scripts. Each script accounts for three retries before skipping over to the next set of files.
This script makes your USB drive bootable in NTFS format.
# Select USB drive letter
$usbDriveLetter = Read-Host "Enter USB drive letter (Ex: E)"
# Format USB drive
Format-Volume -DriveLetter $usbDriveLetter -FileSystem NTFS -NewFileSystemLabel "WinServerUSB" -Confirm:$false | Out-Null
# Select ISO file mount point
$isoMountPointDriveLetter = Read-Host "Enter ISO mount point drive letter (Ex: F)"
# Copy ISO files to USB drive
$source = "$($isoMountPointDriveLetter):\"
$destination = "$($usbDriveLetter):\"
robocopy $source $destination /COPYALL /Z /E /SEC /R:3 /W:3
# Make USB drive bootable
$usbDriveNumber = (Get-WmiObject -Class Win32_DiskDrive | Where-Object {$_.InterfaceType -eq "USB" -and $_.DeviceID -like "*$usbDriveLetter"}).Index
bootsect /nt60 $usbDriveLetter | Out-Null
# Task completion notification
Write-Host "Copy operation complete"
Start-Sleep -Seconds 2
Before you can install Windows Server via USB or DVD, the computer's boot order in the BIOS must be changed to ensure that the system boots from either the USB or DVD. Accessing the BIOS can vary depending on your hardware. In most cases, you can access the BIOS by pressing a specific key while your device boots. Typically, the key is either F2, F10, F12, or Delete. Refer to the user manual for your device. On certain hardware, once POST completes, there's a short window allowed for accessing the BIOS. You might need to repeatedly press one of the keys as soon as POST completes.
Once you're in the BIOS settings, navigate through the menus until you see the Boot Order or Boot Sequence option. Refer to the user manual for your device to locate this setting. Once you select the boot order setting, you can edit the boot order priority based in top-down order. Move booting from the USB or optical drive to the top of the list depending on which media installation method you're using. Once appropriate changes are made, save and exit from the BIOS. Your device reboots automatically in applying these changes.
Once modifications are made to the boot order and you select to boot from either the USB or DVD drive, follow these steps to install Windows Server.
Plug in your USB drive or DVD into your optical drive, then reboot your device.
Once your device boots, you're prompted to press any key to boot from your installation media.
Under Select language settings, select your language, time and currency format, then select Next.
Under Select keyboard settings, select your keyboard language, then select Next.
Under Select setup option, select Install Windows Server, select I agree everything will be deleted including files, apps, and settings, then select Next.
Under Choose a licensing method, select the option that best serves your environment, then select Next:
Use a product key - This option is for users who have an OEM, Retail, or Volume License (VL) key. If this license type is selected, proceed with the next steps.
Pay-as-you-go - This option is for users who desire to use their Azure subscription license. This option is only available for Windows Server 2025 and has its own set of prerequisites. If this license type is selected, see Set up Windows Server Pay-as-you-go to continue the installation process.
Under Select image, select your Windows Server version, then select Next.
Under Applicable notices and license terms, review the software terms, then select Accept.
Under Select location to install Windows Server, select the disk which you want to install Windows Server, then select Next.
Under Ready to install, select Install.
Once your device reboots a few times, the License terms appear. Select Accept to proceed.
Under Customize settings, provide a complex password for the Administrator account, then select Finish.
Once you log into the Administrator account, review the Send diagnostic data to Microsoft information, then select Accept.
Nota
To manage and configure your Windows Server Core environment, you have the option of using the Server Configuration tool (SConfig). To learn more, see Administer a Server Core server and Configure a Server Core installation of Windows Server and Azure Local with the Server Configuration tool (SConfig).
Eventos
29 abr, 2 p.m. - 30 abr, 7 p.m.
Únase al evento virtual definitivo de Windows Server el 29 y 30 de abril para sesiones técnicas detalladas y preguntas y respuestas en vivo con los ingenieros de Microsoft.
Regístrate ahoraFormación
Certificación
Microsoft Certified: Windows Server Hybrid Administrator Associate - Certifications
Como administrador híbrido de Windows Server, integra los entornos de Windows Server con servicios de Azure y administra Windows Server en redes locales.
Documentación
Crear una unidad de instalación USB de Windows Server 2016 de arranque paso a paso
Estos procedimientos se escribieron y probaron con Windows Server 2016 Technical Preview 5, pero deben funcionar en cualquier versión de Windows Server o Windos Desktop versión 8 o posterior. Deben funcionar en versiones anteriores de Windows 10, Winndows 8, Windows Server 2012, Windows 7 y Windows Vista y Windows Server 2008 o Windows Server 2008 R2. Nota: esta publicación NO usa ningún archivo .EXE descargable. Este es el largo camino. Si quieres crear un USB de arranque con Windows 10 mediante el ejecuta
Novedades de Windows Server 2022
Descubra las novedades de Windows Server 2022.