elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Guía actualizada para evitar que un ransomware ataque tu empresa


+  Foro de elhacker.net
|-+  Sistemas Operativos
| |-+  Windows (Moderador: Randomize)
| | |-+  [APORTE] Archivo de instalación desatendida para Windows 10
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [APORTE] Archivo de instalación desatendida para Windows 10  (Leído 8,547 veces)
Eleкtro
Ex-Staff
*
Desconectado Desconectado

Mensajes: 9.788



Ver Perfil
[APORTE] Archivo de instalación desatendida para Windows 10
« en: 6 Agosto 2015, 19:07 pm »

¿Qué es esto?


Esto es un archivo de instalación personalizada y desatendida para la versión de 64 Bits de Windows 10 (build 10240) que hice con la herramienta WSIM (Windows System Image Manager) de Microsoft, con el kit de evaluación e implementación (ADK) de Windows 10.

El propósito de este archivo es automatizar la instalación de Windows 10. Es muy útil para usar en máquinas virtuales, para técnicos en restauración de equipos, o simplimente para cualquier persona que quiera aplicar una pre-configuración por defecto a su S.O.

La única interacción por parte del usuario es seleccionar el HDD donde instalar Windows 10, no he querido configurar esto por motivos de seguridad, el resto está todo automatizado.





Configuración por defecto


  • Cuenta de usuario oculta "Administrador" activada: Sí.
  • Cuenta de usuario por defecto: "Administrador".
  • Auto login activado: Sí.
  • Nombre de PC: "Win10-PC"
  • Resolución: 1920x1080
  • Lenguaje de la UI, del teclado, etc: "es-ES" (Español de España)
  • Zona Horaría: "Romance Standard Time" (UTC+01:00, España)
  • Lugar de red: Casa
  • Clave de licencia Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
  • Clave de licencia Pro: W269N-WFGWX-YVC9B-4J6C9-T83GX

  • Otros detalles de menor importancia...





¿Cómo lo utilizo?


1. Copiar y guardar uno de los siguientes códigos, en un archivo con nombre AutoUnattend.xml

( Si quieren instalar la edición Home, usen este script de abajo... )
Código
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  3.    <settings pass="windowsPE">
  4.        <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5.            <SetupUILanguage>
  6.                <UILanguage>es-ES</UILanguage>
  7.            </SetupUILanguage>
  8.            <InputLocale>es-ES</InputLocale>
  9.            <SystemLocale>es-ES</SystemLocale>
  10.            <UILanguage>es-ES</UILanguage>
  11.            <UserLocale>es-ES</UserLocale>
  12.            <UILanguageFallback>es-ES</UILanguageFallback>
  13.        </component>
  14.        <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  15.            <Display>
  16.                <ColorDepth>32</ColorDepth>
  17.                <HorizontalResolution>1920</HorizontalResolution>
  18.                <VerticalResolution>1080</VerticalResolution>
  19.            </Display>
  20.            <ImageInstall>
  21.                <OSImage>
  22.                    <InstallFrom>
  23.                        <MetaData wcm:action="add">
  24.                            <Key>/IMAGE/NAME</Key>
  25.                            <Value>Windows 10 Home</Value>
  26.                        </MetaData>
  27.                    </InstallFrom>
  28.                    <WillShowUI>OnError</WillShowUI>
  29.                </OSImage>
  30.            </ImageInstall>
  31.            <UserData>
  32.                <ProductKey>
  33.                    <Key>TX9XD-98N7V-6WMQ6-BX7FG-H8Q99</Key>
  34.                    <WillShowUI>OnError</WillShowUI>
  35.                </ProductKey>
  36.                <AcceptEula>true</AcceptEula>
  37.                <FullName>NOMBRE_USUARIO</FullName>
  38.            </UserData>
  39.            <EnableNetwork>true</EnableNetwork>
  40.            <EnableFirewall>true</EnableFirewall>
  41.            <Restart>Restart</Restart>
  42.        </component>
  43.        <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  44.            <SetupUILanguage>
  45.                <UILanguage>es-ES</UILanguage>
  46.            </SetupUILanguage>
  47.            <InputLocale>es-ES</InputLocale>
  48.            <SystemLocale>es-ES</SystemLocale>
  49.            <UILanguage>es-ES</UILanguage>
  50.            <UILanguageFallback>es-ES</UILanguageFallback>
  51.            <UserLocale>es-ES</UserLocale>
  52.        </component>
  53.        <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  54.            <Display>
  55.                <ColorDepth>32</ColorDepth>
  56.                <HorizontalResolution>1920</HorizontalResolution>
  57.                <VerticalResolution>1080</VerticalResolution>
  58.            </Display>
  59.            <ImageInstall>
  60.                <OSImage>
  61.                    <InstallFrom>
  62.                        <MetaData wcm:action="add">
  63.                            <Key>/IMAGE/NAME</Key>
  64.                            <Value>Windows 10 Home</Value>
  65.                        </MetaData>
  66.                    </InstallFrom>
  67.                    <WillShowUI>OnError</WillShowUI>
  68.                </OSImage>
  69.            </ImageInstall>
  70.            <UserData>
  71.                <ProductKey>
  72.                    <Key>TX9XD-98N7V-6WMQ6-BX7FG-H8Q99</Key>
  73.                    <WillShowUI>OnError</WillShowUI>
  74.                </ProductKey>
  75.                <Organization></Organization>
  76.                <FullName>NOMBRE_USUARIO</FullName>
  77.                <AcceptEula>true</AcceptEula>
  78.            </UserData>
  79.            <EnableFirewall>true</EnableFirewall>
  80.            <EnableNetwork>true</EnableNetwork>
  81.            <Restart>Restart</Restart>
  82.        </component>
  83.    </settings>
  84.    <settings pass="specialize">
  85.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  86.            <AutoLogon>
  87.                <Enabled>true</Enabled>
  88.                <LogonCount>1</LogonCount>
  89.                <Username>Administrator</Username>
  90.            </AutoLogon>
  91.            <Themes>
  92.                <WindowColor>0</WindowColor>
  93.                <DefaultThemesOff>false</DefaultThemesOff>
  94.            </Themes>
  95.            <WindowsFeatures>
  96.                <ShowInternetExplorer>false</ShowInternetExplorer>
  97.                <ShowMediaCenter>false</ShowMediaCenter>
  98.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  99.            </WindowsFeatures>
  100.            <ComputerName>Win10-PC</ComputerName>
  101.            <ProductKey>TX9XD-98N7V-6WMQ6-BX7FG-H8Q99</ProductKey>
  102.            <RegisteredOrganization></RegisteredOrganization>
  103.            <TimeZone>Romance Standard Time</TimeZone>
  104.            <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
  105.            <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
  106.        </component>
  107.        <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  108.            <InputLocale>es-ES</InputLocale>
  109.            <SystemLocale>es-ES</SystemLocale>
  110.            <UILanguage>es-ES</UILanguage>
  111.            <UILanguageFallback>es-ES</UILanguageFallback>
  112.            <UserLocale>es-ES</UserLocale>
  113.        </component>
  114.        <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  115.            <SkipAutoActivation>true</SkipAutoActivation>
  116.        </component>
  117.        <component name="Microsoft-Windows-ErrorReportingCore" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  118.            <DisableWER>0</DisableWER>
  119.        </component>
  120.    </settings>
  121.    <settings pass="oobeSystem">
  122.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  123.            <AutoLogon>
  124.                <LogonCount>1</LogonCount>
  125.                <Username>Administrator</Username>
  126.                <Enabled>true</Enabled>
  127.            </AutoLogon>
  128.            <OOBE>
  129.                <HideEULAPage>true</HideEULAPage>
  130.                <ProtectYourPC>3</ProtectYourPC>
  131.                <NetworkLocation>Home</NetworkLocation>
  132.                <HideLocalAccountScreen>true</HideLocalAccountScreen>
  133.                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
  134.                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  135.                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
  136.            </OOBE>
  137.            <Themes>
  138.                <DefaultThemesOff>false</DefaultThemesOff>
  139.                <WindowColor>0</WindowColor>
  140.            </Themes>
  141.            <UserAccounts>
  142.                <LocalAccounts>
  143.                    <LocalAccount wcm:action="add">
  144.                        <Name>Administrator</Name>
  145.                        <Group>Administrators</Group>
  146.                        <DisplayName>Administrator</DisplayName>
  147.                        <Description>Administrator Account</Description>
  148.                    </LocalAccount>
  149.                </LocalAccounts>
  150.            </UserAccounts>
  151.            <VisualEffects>
  152.                <FontSmoothing>ClearType</FontSmoothing>
  153.                <SystemDefaultBackgroundColor>0</SystemDefaultBackgroundColor>
  154.            </VisualEffects>
  155.            <WindowsFeatures>
  156.                <ShowInternetExplorer>false</ShowInternetExplorer>
  157.                <ShowMediaCenter>false</ShowMediaCenter>
  158.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  159.            </WindowsFeatures>
  160.            <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
  161.            <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
  162.            <TimeZone>Romance Standard Time</TimeZone>
  163.        </component>
  164.        <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  165.            <InputLocale>es-ES</InputLocale>
  166.            <SystemLocale>es-ES</SystemLocale>
  167.            <UILanguage>es-ES</UILanguage>
  168.            <UILanguageFallback>es-ES</UILanguageFallback>
  169.            <UserLocale>es-ES</UserLocale>
  170.        </component>
  171.    </settings>
  172.    <settings pass="auditUser">
  173.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  174.            <Themes>
  175.                <WindowColor>0</WindowColor>
  176.                <DefaultThemesOff>false</DefaultThemesOff>
  177.            </Themes>
  178.            <WindowsFeatures>
  179.                <ShowInternetExplorer>false</ShowInternetExplorer>
  180.                <ShowMediaCenter>false</ShowMediaCenter>
  181.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  182.            </WindowsFeatures>
  183.        </component>
  184.    </settings>
  185.    <settings pass="auditSystem">
  186.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  187.            <AutoLogon>
  188.                <Enabled>true</Enabled>
  189.                <LogonCount>1</LogonCount>
  190.                <Username>Administrator</Username>
  191.            </AutoLogon>
  192.            <Themes>
  193.                <DefaultThemesOff>false</DefaultThemesOff>
  194.                <WindowColor>0</WindowColor>
  195.            </Themes>
  196.            <WindowsFeatures>
  197.                <ShowInternetExplorer>false</ShowInternetExplorer>
  198.                <ShowMediaCenter>false</ShowMediaCenter>
  199.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  200.            </WindowsFeatures>
  201.            <TimeZone>Romance Standard Time</TimeZone>
  202.            <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
  203.        </component>
  204.    </settings>
  205.    <settings pass="offlineServicing">
  206.        <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  207.            <EnableLUA>false</EnableLUA>
  208.        </component>
  209.    </settings>
  210.    <cpi:offlineImage cpi:source="wim:c:/users/administrador/desktop/iso-10240.pro-core-x64-es-es/sources/install.wim#Windows 10 Home" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  211. </unattend>

( Si quieren instalar la edición Pro, usen este script de abajo... )
Código
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <unattend xmlns="urn:schemas-microsoft-com:unattend">
  3.    <settings pass="windowsPE">
  4.        <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5.            <SetupUILanguage>
  6.                <UILanguage>es-ES</UILanguage>
  7.            </SetupUILanguage>
  8.            <InputLocale>es-ES</InputLocale>
  9.            <SystemLocale>es-ES</SystemLocale>
  10.            <UILanguage>es-ES</UILanguage>
  11.            <UserLocale>es-ES</UserLocale>
  12.            <UILanguageFallback>es-ES</UILanguageFallback>
  13.        </component>
  14.        <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  15.            <Display>
  16.                <ColorDepth>32</ColorDepth>
  17.                <HorizontalResolution>1920</HorizontalResolution>
  18.                <VerticalResolution>1080</VerticalResolution>
  19.            </Display>
  20.            <ImageInstall>
  21.                <OSImage>
  22.                    <InstallFrom>
  23.                        <MetaData wcm:action="add">
  24.                            <Key>/IMAGE/NAME</Key>
  25.                            <Value>Windows 10 Pro</Value>
  26.                        </MetaData>
  27.                    </InstallFrom>
  28.                    <WillShowUI>OnError</WillShowUI>
  29.                </OSImage>
  30.            </ImageInstall>
  31.            <UserData>
  32.                <ProductKey>
  33.                    <Key>W269N-WFGWX-YVC9B-4J6C9-T83GX</Key>
  34.                    <WillShowUI>OnError</WillShowUI>
  35.                </ProductKey>
  36.                <AcceptEula>true</AcceptEula>
  37.                <FullName>NOMBRE_USUARIO</FullName>
  38.            </UserData>
  39.            <EnableNetwork>true</EnableNetwork>
  40.            <EnableFirewall>true</EnableFirewall>
  41.            <Restart>Restart</Restart>
  42.        </component>
  43.        <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  44.            <SetupUILanguage>
  45.                <UILanguage>es-ES</UILanguage>
  46.            </SetupUILanguage>
  47.            <InputLocale>es-ES</InputLocale>
  48.            <SystemLocale>es-ES</SystemLocale>
  49.            <UILanguage>es-ES</UILanguage>
  50.            <UILanguageFallback>es-ES</UILanguageFallback>
  51.            <UserLocale>es-ES</UserLocale>
  52.        </component>
  53.        <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  54.            <Display>
  55.                <ColorDepth>32</ColorDepth>
  56.                <HorizontalResolution>1920</HorizontalResolution>
  57.                <VerticalResolution>1080</VerticalResolution>
  58.            </Display>
  59.            <ImageInstall>
  60.                <OSImage>
  61.                    <InstallFrom>
  62.                        <MetaData wcm:action="add">
  63.                            <Key>/IMAGE/NAME</Key>
  64.                            <Value>Windows 10 Pro</Value>
  65.                        </MetaData>
  66.                    </InstallFrom>
  67.                    <WillShowUI>OnError</WillShowUI>
  68.                </OSImage>
  69.            </ImageInstall>
  70.            <UserData>
  71.                <ProductKey>
  72.                    <Key>W269N-WFGWX-YVC9B-4J6C9-T83GX</Key>
  73.                    <WillShowUI>OnError</WillShowUI>
  74.                </ProductKey>
  75.                <Organization></Organization>
  76.                <FullName>NOMBRE_USUARIO</FullName>
  77.                <AcceptEula>true</AcceptEula>
  78.            </UserData>
  79.            <EnableFirewall>true</EnableFirewall>
  80.            <EnableNetwork>true</EnableNetwork>
  81.            <Restart>Restart</Restart>
  82.        </component>
  83.    </settings>
  84.    <settings pass="specialize">
  85.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  86.            <AutoLogon>
  87.                <Enabled>true</Enabled>
  88.                <LogonCount>1</LogonCount>
  89.                <Username>Administrator</Username>
  90.            </AutoLogon>
  91.            <Themes>
  92.                <WindowColor>0</WindowColor>
  93.                <DefaultThemesOff>false</DefaultThemesOff>
  94.            </Themes>
  95.            <WindowsFeatures>
  96.                <ShowInternetExplorer>false</ShowInternetExplorer>
  97.                <ShowMediaCenter>false</ShowMediaCenter>
  98.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  99.            </WindowsFeatures>
  100.            <ComputerName>Win10-PC</ComputerName>
  101.            <ProductKey>W269N-WFGWX-YVC9B-4J6C9-T83GX</ProductKey>
  102.            <RegisteredOrganization></RegisteredOrganization>
  103.            <TimeZone>Romance Standard Time</TimeZone>
  104.            <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
  105.            <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
  106.        </component>
  107.        <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  108.            <InputLocale>es-ES</InputLocale>
  109.            <SystemLocale>es-ES</SystemLocale>
  110.            <UILanguage>es-ES</UILanguage>
  111.            <UILanguageFallback>es-ES</UILanguageFallback>
  112.            <UserLocale>es-ES</UserLocale>
  113.        </component>
  114.        <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  115.            <SkipAutoActivation>true</SkipAutoActivation>
  116.        </component>
  117.        <component name="Microsoft-Windows-ErrorReportingCore" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  118.            <DisableWER>0</DisableWER>
  119.        </component>
  120.    </settings>
  121.    <settings pass="oobeSystem">
  122.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  123.            <AutoLogon>
  124.                <LogonCount>1</LogonCount>
  125.                <Username>Administrator</Username>
  126.                <Enabled>true</Enabled>
  127.            </AutoLogon>
  128.            <OOBE>
  129.                <HideEULAPage>true</HideEULAPage>
  130.                <ProtectYourPC>3</ProtectYourPC>
  131.                <NetworkLocation>Home</NetworkLocation>
  132.                <HideLocalAccountScreen>true</HideLocalAccountScreen>
  133.                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
  134.                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
  135.                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
  136.            </OOBE>
  137.            <Themes>
  138.                <DefaultThemesOff>false</DefaultThemesOff>
  139.                <WindowColor>0</WindowColor>
  140.            </Themes>
  141.            <UserAccounts>
  142.                <LocalAccounts>
  143.                    <LocalAccount wcm:action="add">
  144.                        <Name>Administrator</Name>
  145.                        <Group>Administrators</Group>
  146.                        <DisplayName>Administrator</DisplayName>
  147.                        <Description>Administrator Account</Description>
  148.                    </LocalAccount>
  149.                </LocalAccounts>
  150.            </UserAccounts>
  151.            <VisualEffects>
  152.                <FontSmoothing>ClearType</FontSmoothing>
  153.                <SystemDefaultBackgroundColor>0</SystemDefaultBackgroundColor>
  154.            </VisualEffects>
  155.            <WindowsFeatures>
  156.                <ShowInternetExplorer>false</ShowInternetExplorer>
  157.                <ShowMediaCenter>false</ShowMediaCenter>
  158.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  159.            </WindowsFeatures>
  160.            <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
  161.            <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
  162.            <TimeZone>Romance Standard Time</TimeZone>
  163.        </component>
  164.        <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  165.            <InputLocale>es-ES</InputLocale>
  166.            <SystemLocale>es-ES</SystemLocale>
  167.            <UILanguage>es-ES</UILanguage>
  168.            <UILanguageFallback>es-ES</UILanguageFallback>
  169.            <UserLocale>es-ES</UserLocale>
  170.        </component>
  171.    </settings>
  172.    <settings pass="auditUser">
  173.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  174.            <Themes>
  175.                <WindowColor>0</WindowColor>
  176.                <DefaultThemesOff>false</DefaultThemesOff>
  177.            </Themes>
  178.            <WindowsFeatures>
  179.                <ShowInternetExplorer>false</ShowInternetExplorer>
  180.                <ShowMediaCenter>false</ShowMediaCenter>
  181.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  182.            </WindowsFeatures>
  183.        </component>
  184.    </settings>
  185.    <settings pass="auditSystem">
  186.        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  187.            <AutoLogon>
  188.                <Enabled>true</Enabled>
  189.                <LogonCount>1</LogonCount>
  190.                <Username>Administrator</Username>
  191.            </AutoLogon>
  192.            <Themes>
  193.                <DefaultThemesOff>false</DefaultThemesOff>
  194.                <WindowColor>0</WindowColor>
  195.            </Themes>
  196.            <WindowsFeatures>
  197.                <ShowInternetExplorer>false</ShowInternetExplorer>
  198.                <ShowMediaCenter>false</ShowMediaCenter>
  199.                <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
  200.            </WindowsFeatures>
  201.            <TimeZone>Romance Standard Time</TimeZone>
  202.            <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
  203.        </component>
  204.    </settings>
  205.    <settings pass="offlineServicing">
  206.        <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  207.            <EnableLUA>false</EnableLUA>
  208.        </component>
  209.    </settings>
  210.    <cpi:offlineImage cpi:source="wim:c:/users/administrador/desktop/iso-10240.pro-core-x64-es-es/sources/install.wim#Windows 10 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
  211. </unattend>

2. Colocar el archivo AutoUnattend.xml en el directorio raíz de la ISO de Windows 10.



3. Grabar la imagen ISO de Windows 10.

FÍN.





Imágenes post-instalación


( click para agrandar en las imágenes )

   





Otras versiones de Windows...


Aquí pueden encontrar el archivo de instalación desatendida para Windows 8 x64 y Windows 8.1 x64:
[APORTE] Archivo de instalación desatendida para Windows 8 Core





Háztelo tú!


Aquí os dejo mi instalador personalizado de WSIM para Windows 8.1 y Windows 10, para que no tengais que descargar e instalar el ADK, con esto es suficiente.

http://www.mediafire.com/download/bwfta1gbc36dc44/Windows+System+Image+Manager.exe






Extras

A falta de una carátula oficial o diseños personalizados, tomé como base una carátula de Windows 8.1 con un bonito diseño, y acabé haciendo esta modificación para tener ya una carátula de DVD de Windows 10 que poder imprimir. Espero que os guste :).

( click para agrandar )



Saludos!


« Última modificación: 6 Agosto 2015, 19:22 pm por Eleкtro » En línea

karso

Desconectado Desconectado

Mensajes: 1


Ver Perfil
Re: [APORTE] Archivo de instalación desatendida para Windows 10
« Respuesta #1 en: 20 Diciembre 2015, 01:38 am »

Buenas,
¿Podrias hacerme una instalacion desatendida de Windows 10 Pro en la que instalara el sistema en el HDD1 y en el HDD Datos?
Gracias


En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
¿Instalación Desatendida?
Software
Yoker66666 2 1,843 Último mensaje 25 Julio 2012, 13:44 pm
por Yoker66666
[APORTE] Archivo de instalación desatendida para Windows 8 Core
Windows
Eleкtro 2 4,758 Último mensaje 11 Febrero 2014, 23:26 pm
por Eleкtro
[Aporte]Aplicar desfase a archivo de subtitulos .srt
Java
ls_52 0 1,820 Último mensaje 7 Marzo 2016, 14:08 pm
por ls_52
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines