Skip to main content
Ben Nadel at Scotch On The Rock (SOTR) 2010 (London) with: John Whish and Kev McCabe
Ben Nadel at Scotch On The Rock (SOTR) 2010 (London) with: John Whish Kev McCabe

Windows 11 Desatendido Espanol ((better)) May 2026

Introducción: ¿Qué es una Instalación Desatendida? Imagina esto: Acabas de formatear tu PC o la de un cliente. Metes el USB de instalación de Windows 11, arrancas, y en lugar de pasar 30 minutos haciendo clic en "Siguiente", escribiendo el nombre del equipo, aceptando la licencia y desmarcando publicidad, el sistema se instala solo. Al volver con un café, te encuentras con el escritorio listo, con tus programas favoritos instalados, las configuraciones de privacidad aplicadas y el idioma español perfectamente configurado.

Anímate a crear tu propio autounattend.xml . Empieza con la plantilla que te proporcionamos y ve añadiendo capas de personalización (drivers, software, scripts de limpieza). Verás cómo una inversión inicial de unas horas te devuelve cientos de horas productivas a lo largo del año. windows 11 desatendido espanol

<?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <!-- Configuración de idioma en el entorno de instalación --> <component name="Microsoft-Windows-International-Core-WinPE" ...> <SetupUILanguage> <UILanguage>es-ES</UILanguage> </SetupUILanguage> <InputLocale>es-ES</InputLocale> <SystemLocale>es-ES</SystemLocale> <UILanguage>es-ES</UILanguage> <UserLocale>es-ES</UserLocale> </component> <!-- Particionado automático de disco --> <component name="Microsoft-Windows-Setup" ...> <DiskConfiguration> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <!-- Partición EFI --> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>EFI</Type> <Size>100</Size> </CreatePartition> <!-- Partición MSR --> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>MSR</Type> <Size>16</Size> </CreatePartition> <!-- Partición principal (resto del disco) --> <CreatePartition wcm:action="add"> <Order>3</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Order>1</Order> <PartitionID>1</PartitionID> <Format>FAT32</Format> <Label>EFI</Label> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> <ModifyPartition wcm:action="add"> <Order>3</Order> <PartitionID>3</PartitionID> <Format>NTFS</Format> <Label>Sistema</Label> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration> <!-- Instalación en la partición correcta --> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>3</PartitionID> </InstallTo> </OSImage> </ImageInstall> </component> </settings> <settings pass="oobeSystem"> <!-- Configuración post-instalación (Out Of Box Experience) --> <component name="Microsoft-Windows-Shell-Setup" ...> <OOBE> <HideEULAPage>true</HideEULAPage> <HideLocalAccountScreen>true</HideLocalAccountScreen> <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen> <HideOnlineAccountScreens>true</HideOnlineAccountScreens> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>true</SkipUserOOBE> </OOBE> <!-- Cuenta de usuario local (evita cuenta Microsoft) --> <LocalAccounts> <LocalAccount wcm:action="add"> <Name>Usuario</Name> <Group>Administrators</Group> <Password> <Value>MiContraseñaSegura</Value> <PlainText>true</PlainText> </Password> </LocalAccount> </LocalAccounts> <!-- Configuración regional final --> <RegisteredOrganization>MiEmpresa</RegisteredOrganization> <RegisteredOwner>Usuario</RegisteredOwner> <TimeZone>Romance Standard Time</TimeZone> </component> <!-- Idioma final y teclado --> <component name="Microsoft-Windows-International-Core" ...> <InputLocale>es-ES</InputLocale> <SystemLocale>es-ES</SystemLocale> <UILanguage>es-ES</UILanguage> <UserLocale>es-ES</UserLocale> </component> </settings> Introducción: ¿Qué es una Instalación Desatendida

<!-- Otras configuraciones útiles: desactivar Cortana, telemetría, etc. --> <settings pass="specialize"> <component name="Microsoft-Windows-Deployment" ...> <Reseal> <Mode>Audit</Mode> <!-- Opcional: entrar en modo auditoría --> </Reseal> </component> <component name="Security-Malware-Windows-Defender" ...> <DisableAntiSpyware>false</DisableAntiSpyware> </component> </settings> </unattend> Al volver con un café, te encuentras con

I believe in love. I believe in compassion. I believe in human rights. I believe that we can afford to give more of these gifts to the world around us because it costs us nothing to be decent and kind and understanding. And, I want you to know that when you land on this site, you are accepted for who you are, no matter how you identify, what truths you live, or whatever kind of goofy shit makes you feel alive! Rock on with your bad self!
Ben Nadel
Managed ColdFusion hosting services provided by:
xByte Cloud Logo