Jump to content

ricktendo

Members
  • Posts

    8,715
  • Joined

  • Last visited

  • Days Won

    444

Posts posted by ricktendo

  1. El problema no es Wintoolkit es Windows 8, por alguna razon cuando desabilitas UAC en Windows 8 desde el Action Center este NO lo desabilita por completo. Para esto tienes que usar un regtweak

    http://www.eightforums.com/system-security/2434-disable-uac-completely.html

    Si dices que usas Autounattend.xml para desabilitar, este deberia desabilitarlo por completo (igual a la opcion de arriba)

    De otro modo, puedes probar elevate para lanzar tus cmd como admin

    http://code.kliu.org/misc/elevate/

  2. Windows 8 changed compared to 7 when it comes to unattended and serial, what I do is inject the serial into my image with dism (when I did this in 7 it automatically detected it and skipped, but no longer works in 8) and I use this autounattend.xml code to skip it during setup (only necessary in 8)

     

            <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">            <ImageInstall>                <OSImage>                    <InstallFrom>                        <MetaData wcm:action="add">                            <Key>/IMAGE/INDEX</Key>                            <Value>1</Value>                        </MetaData>                    </InstallFrom>                </OSImage>            </ImageInstall>            <UserData>                <AcceptEula>true</AcceptEula>                <FullName>My Name</FullName>                <Organization></Organization>                <ProductKey>                    <Key></Key>                </ProductKey>            </UserData>        </component>
    Yes 'Key' is blank

    You can also use ei.cfg as well to skip serial during setup

×
×
  • Create New...