Windows 7 autounattend.xml first logon commands

Hi
Within autounattend my first logon command are not running,  I am using the local administrator account! as when my build is finished it is logged in under the local administrator account (so that cant be my issue)
Anyway, is there any log file output I can get out of the autouattend.xml to see whats going wrong for me? can i enable logging ? is yes how do i do that ?
john

I'm running into the same issue.  Everything in my unattend.xml takes effect, but a simple registry edit fails.
Tracy, unless they modified their post, per your own link your response is not the answer:  When a user with administrative
privileges logs in for the first time, these commands are run with elevated access privileges.
Example code that fails:
      <FirstLogonCommands>
        <SynchronousCommand wcm:action="add">
          <Order>1</Order>
          <CommandLine>cmd /c reg.exe ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ /v HideFileExt /t REG_DWORD /d 0 /f</CommandLine>
          <Description>ChangeHideFiles</Description>
        </SynchronousCommand>
      </FirstLogonCommands>
Alternatively,
      <FirstLogonCommands>
        <SynchronousCommand wcm:action="add">
          <Order>1</Order>
          <CommandLine>C:\windows\system32\reg.exe ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ /v HideFileExt /t REG_DWORD /d 0 /f</CommandLine>
          <Description>ChangeHideFiles</Description>
        </SynchronousCommand>
      </FirstLogonCommands>
Full example unattend.  Maybe I don't have it in the right spot or wrong syntax?
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="specialize">
<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">
<ComputerName>EXAM</ComputerName>
<TimeZone>Eastern Standard Time</TimeZone>
</component>
</settings>
<settings pass="oobeSystem">
<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">
<UserAccounts>
<AdministratorPassword>
<Value>p@ssw0rd!</Value>
<PlainText>true</PlainText>
</AdministratorPassword>
</UserAccounts>
<AutoLogon>
<Password>
<Value>p@ssw0rd!</Value>
<PlainText>true</PlainText>
</Password>
<Username>administrator</Username>
<LogonCount>2</LogonCount>
<Enabled>true</Enabled>
</AutoLogon>
<FirstLogonCommands>
<SynchronousCommand wcm:action="add">
<Order>1</Order>
<CommandLine>cmd /c reg.exe ADD HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ /v HideFileExt /t REG_DWORD /d 0 /f</CommandLine>
<Description>ChangeHideFiles</Description>
</SynchronousCommand>
</FirstLogonCommands>
<RegisteredOrganization>ORG</RegisteredOrganization>
<RegisteredOwner>USER</RegisteredOwner>
<OOBE>
<HideEULAPage>true</HideEULAPage>
<SkipMachineOOBE>true</SkipMachineOOBE>
</OOBE>
</component>
</settings>
<cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>
 

Similar Messages

  • Windows 8.1 32bit Autounattend.xml, disabling touch screen functionality

    This is quite a strange problem and I do not have the slightest clue why this is happening.
    I am trying to make an unattended Windows 8.1 Pro32 bit install for a touch screen PC. I have made an answer file which appears to work correctly (it skips all user interaction during the install). The issue is that when using this Autounattend.xml to install
    Windows the device stops responding to touch. The touch function works throughout the install process (so I know the screen is not broken) but once it has completed the install and loads the OS for the first time there is no touch function available.
    I have removed the Autounattend file from the disk image and installed the OS manually. Touch function works fine once it has completed without the use of an unattend file, which is why I'm fairly sure it is the xml file causing the issue.
    I have been able to make unattend.xml files for Windows 8.1 64bit as we as Windows 7 32 & 64bit but cannot make it work with Windows 8.1 32bit. I have made these .xml files using the Windows System Image Manager, I have made sure I have newest version
    downloaded and installed.
    Is this a common issue with Windows 8.1 32bit? 
    Any help would be greatly appreciated, I'm open to trying anything at this point.
    Below is my Autounattend file:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <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">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
            <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">
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>Windows</Label>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                </DiskConfiguration>
                <ImageInstall>
                    <OSImage>
                        <InstallFrom>
                            <MetaData wcm:action="add">
                                <Key>/image/name</Key>
                                <Value>Windows 8.1 Pro</Value>
                            </MetaData>
                        </InstallFrom>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                        <InstallToAvailablePartition>false</InstallToAvailablePartition>
                        <WillShowUI>OnError</WillShowUI>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <ProductKey>
                        <Key>*****-*****-*****-*****-*****</Key>
                        <WillShowUI>OnError</WillShowUI>
                    </ProductKey>
                    <AcceptEula>true</AcceptEula>
                </UserData>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-Shell-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">
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <HideLocalAccountScreen>true</HideLocalAccountScreen>
                    <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                    <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Description>Administrator account</Description>
                            <DisplayName>Administrator</DisplayName>
                            <Group>Administrators</Group>
                            <Name>Admin</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <VisualEffects>
                    <SystemDefaultBackgroundColor>14</SystemDefaultBackgroundColor>
                </VisualEffects>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-Shell-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">
                <AutoLogon>
                    <Enabled>true</Enabled>
                    <LogonCount>5</LogonCount>
                    <Username>Admin</Username>
                </AutoLogon>
                <OEMInformation>
                    <Manufacturer>****** ************</Manufacturer>
                    <SupportHours>Mon - Fri, 9am - 5pm</SupportHours>
                    <SupportPhone>**** **** ***</SupportPhone>
                    <SupportURL>www.******************.com</SupportURL>
                </OEMInformation>
                <ComputerName>Admin-PC</ComputerName>
                <OEMName>Tablet Technologies</OEMName>
                <TimeZone>UTC</TimeZone>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim://tech1/users/support/desktop/updates/new%20iso&apos;s/win%208.1%2064%20bit/updated%20win%208-1%20pro%20sp1%2064%20bit/sources/install.wim#Windows 8.1 Pro" xmlns:cpi="urn:schemas-microsoft-com:cpi"
    />
    </unattend>

    Hello TwistedDTM,
    Based on my knowledge, I can't find out that this Autounattend.xml has configuration to block the touch screen.
    I want to confirm if you use the Windows 8.1 x86 image to create the catalog file.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Task Sequence (LiteTouch.wsf) does not restart after first logon on Windows 8.1 deployment

    Hi guys!
    I can't figure out what cause the issue.
    First, this is my setup :
    ADK installed
    MDT 2012 (upgraded from 2010 update 1)
    Boot wim regenerated from scratch
    LTIApply.wsf edited http://support.microsoft.com/kb/2797676/en-us
    Windows 8.1 configured and captured (my first Win 8/8.1 deployment)
    New task sequence for that wim.
    My issue is :
    The task sequence windows won't show up only with windows 8.1 deployment after the first logon. (I tried with a Windows 7 with the same setup, works flawlessly)
    I can see the desktop, but nothing show up. I have all the folders and files on the c: (MININT, _SMSTaskSequence LTIBootstrap). I clicked twice on LTIBootstrap, did nothing. I did an LiteTouch.wsf /start, nothing.
    I recaptured my Windows 8.1 (it was on a virtual machine) and I did a new TS. The issue still there.
    All the SMSOSD logs files are on http://sdrv.ms/18VPSKy
    Someone can help me on this? I'll be very happy!
    thanks!

    Was this ever resolved or does anyone have an idea how to fix it?
    I am having a similar issue. I deploy a custom Windows 8.1 image to a system and I get through the OS install, but I end up at the user login screen without the task sequence resuming (thus not running any windows update, doesn't join domain, or any post-install
    tasks). The built in administrator account also shows up as disabled.
    The only changes I have made to the unattend.xml for that image are *maybe* to fix the IE 10/11 error that crashes the deployment by deleting the IE welcome tag, and I have no choice but to make that change when it happens.

  • Unable to change password while first logon on windows server 2008 R2 SP1 system

    Hi Team,
    Ad team has created new account for me with change password on first logon setting
    When I logged in on Windows Server 2008 r2 SP1 system with my new credentials I get a error message stating that
    "You must change your password before logging on the first time. For assistance, conatct your system administrator or technical support" 
    Concern:
    I do not get password change screen on first logon on the server. How should I change my password on first logon?

    Hi,
    I got resolution for above issue
    Run ==> type "tsconfig.msc" ==> double click "RDP-TCP" ==> change security layer to
    RDP Security layer ==> Apply ==> OK

  • First-Logon Times Are Unacceptable in Windows 10

    So far, we have found several issues with Windows 10 Enterprise, but our biggest issue -- by far -- is with the time it takes to logon a new user for the first time.  This was also an issue in Windows 8.1 and is also the reason we largely skipped Windows
    8.1 where I work.
    The time it takes for a user's first logon is too long, even when we disable the "Show first sign-in animation" setting.  I work at a large community college where employees and students frequently bounce from one computer
    to another in the computer labs, often never using the same computer twice.  They login using their domain credentials.
    With new 7200 RPM hard drives and relatively new computers, it takes approximately 160 seconds for a user to logon the first time.  With a new SSD, it takes approximately 50 seconds for a user to logon the first time.  These times are unacceptable
    to us and is a deal breaker for Windows 10 deployment.  The largest part of the logon time is spent at the "Preparing Windows" phase of the first-time logon process.  This issue is serious enough for us that we would consider skipping Windows
    10 and sticking with Windows 7 if it is not drastically alleviated.  Even Windows 7 first logons were not great, but we simply cannot accept how they are in Windows 10.

    I have not noticed slow turn around with either Linux or Windows servers
    so the client is step 1, then the server are looked at for policies that bottleneck
    what version of windows server is being used, lots of variables
    Place your rig specifics into your signature like I have, makes it 100x easier!
    Hardcore Games Legendary is the Only Way to Play!
    Vegan Advocate How can you be an environmentalist and still eat meat?

  • Deployment - Autounattend.xml 3 Partition SYSTEM-WINDOWS-DATA

    I have a Autounattend.xml with SYSTEM and Drive C for Windows installation.
    How can i get a second partition for Data with Letter D?
    I want to say, that SYSTEM is 200MB, C for Windows 50GB and D for Data the Rest of HDD capacity
    I cant solve this Problem. I hope someone can help me. THANKS
    Here is my Autounattend.xml:
    <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">
    <DiskConfiguration>
    <Disk wcm:action="add">
    <CreatePartitions>
    <CreatePartition wcm:action="add">
    <Order>1</Order>
    <Size>200</Size>
    <Type>Primary</Type>
    </CreatePartition>
    <CreatePartition wcm:action="add">
    <Extend>true</Extend>
    <Order>2</Order>
    <Type>Primary</Type>
    </CreatePartition>
    </CreatePartitions>
    <ModifyPartitions>
    <ModifyPartition wcm:action="add">
    <Active>true</Active>
    <Format>NTFS</Format>
    <Label>System</Label>
    <Order>1</Order>
    <PartitionID>1</PartitionID>
    </ModifyPartition>
    <ModifyPartition wcm:action="add">
    <Format>NTFS</Format>
    <Label>Windows</Label>
    <Order>2</Order>
    <PartitionID>2</PartitionID>
    </ModifyPartition>
    </ModifyPartitions>
    <DiskID>0</DiskID>
    <WillWipeDisk>true</WillWipeDisk>
    </Disk>
    <WillShowUI>OnError</WillShowUI>
    </DiskConfiguration>
    <ImageInstall>
    <OSImage>
    <InstallTo>
    <DiskID>0</DiskID>
    <PartitionID>2</PartitionID>
    </InstallTo>
    <WillShowUI>OnError</WillShowUI>
    <InstallToAvailablePartition>false</InstallToAvailablePartition>
    </OSImage>
    </ImageInstall>

    Have you got any solution?
    I know it was an old post, I have tried to do the same idea exactly it succeded but I am facing another problem:
    the windows autounatten installation goes very well but the system reserved partition always take place on the 3rd (the biggest) hdd partition! and this is not what I want any idea how to solve this?

  • MDT First logon no administrator? Gpupdate?

    We got strange issue these days that when we deploy a machine, the deployment process stops after first logon. There is no error, it just stops.
    After some research we found out that the user isn't an administrator at first logon. It seems the gpo that makes sure this account is local admin is not working properly. So if we type gpupdate /force and restart the machine the deployment process will
    continue as if there has been no problem at all!
    Do I need to search for a "gpupdate /force" before first time logon? Feels like a dirty way..

    Thx for the reply!
    The image is indeed sysprepped before importing in MDT.
    When I look the unattend.xml file there is indeed this command:
                <RunSynchronous>
                    <RunSynchronousCommand wcm:action="add">
                        <Description>EnableAdmin</Description>
                        <Order>1</Order>
                        <Path>cmd /c net user Administrator /active:yes</Path>
    So this seems not to be the issue. Is there something else I can look at?
    edit (some more info): We are deploying Win8.1 machines, there should be no issue with the sysprep like Win7 machines had (sysprep rearm count). The autologon is working so the account is not "disabled", only issue is that the user account that is
    logging in is has no administrator privileges. After a gpupdate the user gets administrator privileges (because of a gpo setting). But it should not be that our GPO needs to give this user administrator privileges I guess (user account needs to have admin
    rights before logon first time).

  • 8.1 Enterprise : dont install default apps, speed up first logon on domain?

    Looking to do the following on Windows 8.1 Enterprise (joined to domain)
    1) stop the "hi", "we're setting things up for you", "setting up apps" messages. Trying to deploy hundreds of tablets and first logon for each user to the tablets is SLOWWWW because 8.1 is taking all this time to setup apps
    we don't want and will never use. example (weather, people, skydrive, photos, maps, reading list, etc)
    2) if no way to stop the messages mentioned above, is there a way to set via group policy or other tweaks/modifications to not even install those default apps in (1)??

    Hi,
    You can try to remove the built-in Windows 8.1 applications when creating a Windows 8.1 image, then deploy Windows 8.1.
    Removing Windows 8.1 Built-in Applications
    http://blogs.technet.com/b/deploymentguys/archive/2013/10/21/removing-windows-8-1-built-in-applications.aspx
    Hope this could be helpful.
    Kate Li
    TechNet Community Support

  • 9926 do not read AutoUnattend.xml on USB key

    From Vista to Windows 10 9879 I used AutoUnattend.xml on USB key to deploy.
    9926 do not read my AutoUnattend.xml who worked great with the previous versions.
    I try to modify my AutoUnattend.xml but Windows System Image manager do not want to generate the catalog and give me the message: Windows SIM was unable to generate a catalog. For troubleshooting assistance, see the topic: 'Windows System Image Manager Technical
    Reference' in Windows ADK User's Guide.
    Clic here to open the log file:
    16:26 : This application requires version 6.3.9600.16384 of the Windows ADK.
    Install this version to correct the problem
    16:29 : 
    16:29 : Windows SIM was unable to generate a catalog. For troubleshooting assistance, see the topic: 'Windows System Image Manager Technical Reference' in the Windows ADK User's Guide.
    16:29 : 
    16:29 : System.ComponentModel.Win32Exception (0x80004005): Unknown error (0xc1420117)
    Server stack trace: 
       at Microsoft.ComponentStudio.ComponentPlatformInterface.WimImageInfo.PostCreateCatalog()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.OfflineImageInfo.CreateCatalog()
       at Microsoft.ComponentStudio.ComponentPlatformInterface.CatalogCreatorImpl.CreateCatalog(OfflineImageInfo offlineImageInfo)
       at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
       at System.Runtime.Remoting.Messaging.StackBuilderSink.SyncProcessMessage(IMessage msg)
    Exception rethrown at [0]: 
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at Microsoft.ComponentStudio.ComponentPlatformInterface.ICatalogCreator.CreateCatalog(OfflineImageInfo offlineImageInfo)
       at Microsoft.ComponentStudio.CatalogGenerator.CreateCat(ProgressDialog pd, Object o)
    I do not know what to try to make a unattended install of 9926.
    Thank you for your help.

    Hi,
    Generally speaking, WinPE would generate a setupact.log which contains if the setup process look up AutoUnattend.xml file when installing system.
    Please check it.
    Roger Lu
    TechNet Community Support

  • AutoUnattend.xml is not completing

    So I'm running into a problem with my AutoUnattend.xml. I needed to update my image, so I started from scratch after applying all necessary updates. It was taking far too long to update workstations after installing from the old image.
    The problem I'm running into is that the Unattend.xml will run through the installation no problem, but it isn't creating the user, naming the PC, or running my post install script. Once the installation is completed, I'm presented with a "create user"
    screen that goes hand in hand with the PC name. From there it goes through choosing update schedule, time zone, etc. Below you will find my autounattend.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="windowsPE">
    <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">
    <DiskConfiguration>
    <WillShowUI>OnError</WillShowUI>
    <Disk wcm:action="add">
    <CreatePartitions>
    <CreatePartition wcm:action="add">
    <Extend>true</Extend>
    <Order>1</Order>
    <Type>Primary</Type>
    </CreatePartition>
    </CreatePartitions>
    <ModifyPartitions>
    <ModifyPartition wcm:action="add">
    <Active>true</Active>
    <Format>NTFS</Format>
    <Label>Windows</Label>
    <Letter>C</Letter>
    <Order>1</Order>
    <PartitionID>1</PartitionID>
    </ModifyPartition>
    </ModifyPartitions>
    <DiskID>0</DiskID>
    <WillWipeDisk>true</WillWipeDisk>
    </Disk>
    </DiskConfiguration>
    <EnableFirewall>false</EnableFirewall>
    <EnableNetwork>true</EnableNetwork>
    <Restart>Restart</Restart>
    <UseConfigurationSet>false</UseConfigurationSet>
    <LogPath>%WINDIR%\panther</LogPath>
    <ImageInstall>
    <OSImage>
    <InstallTo>
    <DiskID>0</DiskID>
    <PartitionID>1</PartitionID>
    </InstallTo>
    </OSImage>
    </ImageInstall>
    <UserData>
    <AcceptEula>true</AcceptEula>
    <FullName>IT Group</FullName>
    <Organization>REMOVED</Organization>
    </UserData>
    </component>
    <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">
    <SetupUILanguage>
    <UILanguage>English-US</UILanguage>
    </SetupUILanguage>
    <InputLocale>en-us</InputLocale>
    <SystemLocale>en-us</SystemLocale>
    <UILanguage>en-us</UILanguage>
    <UserLocale>en-us</UserLocale>
    </component>
    <component name="Microsoft-Windows-PnpCustomizationsWinPE" 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">
    <DriverPaths>
    <PathAndCredentials wcm:action="add" wcm:keyValue="Path 1">
    <Path>D:\DRIVERS</Path>
    </PathAndCredentials>
    <PathAndCredentials wcm:action="add" wcm:keyValue="Path 2">
    <Path>E:\DRIVERS</Path>
    </PathAndCredentials>
    <PathAndCredentials wcm:action="add" wcm:keyValue="Path 3">
    <Path>F:\DRIVERS</Path>
    </PathAndCredentials>
    </DriverPaths>
    </component>
    </settings>
    <settings pass="oobeSystem">
    <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">
    <LogonCommands>
    <AsynchronousCommand wcm:action="add">
    <CommandLine>\\GLYSERVER\Share\AutoScripts\PCSetup.bat</CommandLine>
    <Description>Run Auto Install Script</Description>
    <Order>1</Order>
    <RequiresUserInput>false</RequiresUserInput>
    </AsynchronousCommand>
    </LogonCommands>
    <UserAccounts>
    <LocalAccounts>
    <LocalAccount wcm:action="add">
    <Password>
    <Value>QQB6AGQAZwBmAHAAMgAwADAAMQBQAGEAcwBzAHcAbwByAGQA</Value>
    <PlainText>false</PlainText>
    </Password>
    <Description>TempUser</Description>
    <DisplayName>TempUser</DisplayName>
    <Group>Administrators</Group>
    <Name>TempUser</Name>
    </LocalAccount>
    </LocalAccounts>
    <DomainAccounts>
    <DomainAccountList wcm:action="add">
    <Domain>REMOVED.COM</Domain>
    <DomainAccount wcm:action="add">
    <Group>Administrators</Group>
    <Name>REMOVED</Name>
    </DomainAccount>
    </DomainAccountList>
    </DomainAccounts>
    </UserAccounts>
    <OOBE>
    <HideEULAPage>true</HideEULAPage>
    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    <NetworkLocation>Work</NetworkLocation>
    <ProtectYourPC>1</ProtectYourPC>
    <SkipMachineOOBE>true</SkipMachineOOBE>
    <SkipUserOOBE>true</SkipUserOOBE>
    </OOBE>
    <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
    <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
    <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
    <RegisteredOrganization>REMOVED</RegisteredOrganization>
    <RegisteredOwner>IT Group</RegisteredOwner>
    <ShowWindowsLive>false</ShowWindowsLive>
    <StartPanelOff>false</StartPanelOff>
    <TimeZone>Mountain Standard Time</TimeZone>
    </component>
    </settings>
    <settings pass="specialize">
    <component name="Microsoft-Windows-UnattendedJoin" 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">
    <Identification>
    <Credentials>
    <Domain>REMOVED</Domain>
    <Password>REMOVED</Password>
    <Username>REMOVED</Username>
    </Credentials>
    <JoinDomain>REMOVED.COM</JoinDomain>
    <MachineObjectOU>OU=PCTEMP, DC=FPINSURANCE, DC=COM</MachineObjectOU>
    </Identification>
    </component>
    <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" 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">
    <fDenyTSConnections>false</fDenyTSConnections>
    </component>
    <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">
    <AutoLogon>
    <Password>
    <Value>QQB6AGQAZwBmAHAAMgAwADAAMQBQAGEAcwBzAHcAbwByAGQA</Value>
    <PlainText>false</PlainText>
    </Password>
    <Domain>REMOVED.COM</Domain>
    <Enabled>true</Enabled>
    <LogonCount>1</LogonCount>
    <Username>fpinsurance\issuetrak</Username>
    </AutoLogon>
    <WindowsFeatures>
    <ShowInternetExplorer>true</ShowInternetExplorer>
    <ShowMediaCenter>false</ShowMediaCenter>
    <ShowWindowsMail>false</ShowWindowsMail>
    <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
    </WindowsFeatures>
    <ComputerName></ComputerName>
    <ProductKey>XXXXX-XXXXX-XXXXX-XXXXX</ProductKey>
    </component>
    <component name="Networking-MPSSVC-Svc" 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">
    <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
    <PrivateProfile_EnableFirewall>false</PrivateProfile_EnableFirewall>
    <PublicProfile_EnableFirewall>false</PublicProfile_EnableFirewall>
    </component>
    <component name="Security-Malware-Windows-Defender" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <DisableAntiSpyware>true</DisableAntiSpyware>
    </component>
    </settings>
    <settings pass="offlineServicing">
    <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">
    <EnableLUA>false</EnableLUA>
    </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:c:/win7%203020%20installation/install.wim#Windows 7 Professional Custom" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

    I created a new install.wim and applied this unattended.xml to it.  It does get farther (creates user) but now will not put the computer on the domain.  Once I manually put it on the domain it runs the post action scripts like it's supposed to.
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <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">
                <DiskConfiguration>
                    <WillShowUI>OnError</WillShowUI>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>Windows</Label>
                                <Letter>C</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                </DiskConfiguration>
                <EnableFirewall>false</EnableFirewall>
                <EnableNetwork>true</EnableNetwork>
                <Restart>Restart</Restart>
                <UseConfigurationSet>false</UseConfigurationSet>
                <LogPath>%WINDIR%\panther</LogPath>
                <ImageInstall>
                    <OSImage>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                    <FullName>IT Group</FullName>
                    <Organization>Flood and Peterson Insurance Inc.</Organization>
                </UserData>
            </component>
            <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">
                <SetupUILanguage>
                    <UILanguage>English-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>en-us</InputLocale>
                <UILanguage>en-us</UILanguage>
                <UILanguageFallback>en-us</UILanguageFallback>
                <UserLocale>en-us</UserLocale>
                <SystemLocale>en-us</SystemLocale>
            </component>
            <component name="Microsoft-Windows-PnpCustomizationsWinPE" 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">
                <DriverPaths>
                    <PathAndCredentials wcm:action="add" wcm:keyValue="Path 1">
                        <Path>D:\DRIVERS</Path>
                    </PathAndCredentials>
                    <PathAndCredentials wcm:action="add" wcm:keyValue="Path 2">
                        <Path>E:\DRIVERS</Path>
                    </PathAndCredentials>
                    <PathAndCredentials wcm:action="add" wcm:keyValue="Path 3">
                        <Path>F:\DRIVERS</Path>
                    </PathAndCredentials>
                </DriverPaths>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-UnattendedJoin" 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">
                <Identification>
                    <Credentials>
                        <Domain>FPINSURANCE</Domain>
                        <Password>IssueTrak</Password>
                        <Username>Azdgfp2001</Username>
                    </Credentials>
                    <JoinDomain>FPINSURANCE.COM</JoinDomain>
                    <MachineObjectOU>OU=PCTEMP, DC=FPINSURANCE, DC=COM</MachineObjectOU>
                </Identification>
            </component>
            <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" 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">
                <fDenyTSConnections>false</fDenyTSConnections>
            </component>
            <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">
                <AutoLogon>
                    <Password>
                        <Value>QQB6AGQAZwBmAHAAMgAwADAAMQBQAGEAcwBzAHcAbwByAGQA</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Domain>FPINSURANCE.COM</Domain>
                    <Enabled>true</Enabled>
                    <LogonCount>1</LogonCount>
                    <Username>fpinsurance\issuetrak</Username>
                </AutoLogon>
                <WindowsFeatures>
                    <ShowInternetExplorer>true</ShowInternetExplorer>
                    <ShowMediaCenter>false</ShowMediaCenter>
                    <ShowWindowsMail>false</ShowWindowsMail>
                    <ShowWindowsMediaPlayer>false</ShowWindowsMediaPlayer>
                </WindowsFeatures>
                <ComputerName>*</ComputerName>
                <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
                <CopyProfile>false</CopyProfile>
                <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
                <DoNotCleanTaskBar>false</DoNotCleanTaskBar>
                <ProductKey>TBT29-P8KYK-8HV37-KK8WT-WK766</ProductKey>
                <RegisteredOrganization>Flood and Peterson Insurance, Inc.</RegisteredOrganization>
                <RegisteredOwner>IT Group</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <StartPanelOff>false</StartPanelOff>
                <TimeZone>Mountain Standard Time</TimeZone>
            </component>
            <component name="Networking-MPSSVC-Svc" 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">
                <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
                <PrivateProfile_EnableFirewall>false</PrivateProfile_EnableFirewall>
                <PublicProfile_EnableFirewall>false</PublicProfile_EnableFirewall>
            </component>
            <component name="Security-Malware-Windows-Defender" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DisableAntiSpyware>true</DisableAntiSpyware>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <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">
                <LogonCommands>
                    <AsynchronousCommand wcm:action="add">
                        <CommandLine>\\GLYSERVER\Share\AutoScripts\PCSetupx64.bat</CommandLine>
                        <Description>Run Auto Install Script</Description>
                        <Order>1</Order>
                        <RequiresUserInput>false</RequiresUserInput>
                    </AsynchronousCommand>
                </LogonCommands>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>QQB6AGQAZwBmAHAAMgAwADAAMQBQAGEAcwBzAHcAbwByAGQA</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>TempUser</Description>
                            <DisplayName>TempUser</DisplayName>
                            <Group>Administrators</Group>
                            <Name>TempUser</Name>
                        </LocalAccount>
                    </LocalAccounts>
                    <DomainAccounts>
                        <DomainAccountList wcm:action="add">
                            <Domain>FPINSURANCE.COM</Domain>
                            <DomainAccount wcm:action="add">
                                <Group>Administrators</Group>
                                <Name>IssueTrak</Name>
                            </DomainAccount>
                        </DomainAccountList>
                    </DomainAccounts>
                </UserAccounts>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                    <SkipMachineOOBE>true</SkipMachineOOBE>
                    <SkipUserOOBE>true</SkipUserOOBE>
                </OOBE>
                <BluetoothTaskbarIconEnabled>false</BluetoothTaskbarIconEnabled>
                <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
                <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
                <RegisteredOrganization>Flood and Peterson Insurance, Inc.</RegisteredOrganization>
                <RegisteredOwner>IT Group</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <StartPanelOff>false</StartPanelOff>
                <TimeZone>Mountain Standard Time</TimeZone>
            </component>
        </settings>
        <settings pass="offlineServicing">
            <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">
                <EnableLUA>false</EnableLUA>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:c:/users/jeremiahb/unattended/win7%203020/install.wim#Windows 7 Professional" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

  • TMG 2010 publishing Exchange 2010 OWA cannot change password if user must change password at first logon is set

    Hi,
     I have an odd issue whereby if I set "user must change password" on an AD account, the end user cannot logon, they're simply taken back to the OWA login page as if their password is incorrect.
    My setup is as follows:
    outer TMG -- uses a listener for email.contoso.com and is configured for no authentication.This uses a publishing rule to publish the inner TMG server. This server is not a domain member.
    inner TMG - uses a listener for email.contoso.com and is configured for NLTM\kerberos negotiation with forms authentication (Windows Active Directory). This server is a domain member and use a publishing rule to publish the internal CAS. Allow users to change
    password is selected in the publishing rules.
    Exchange 2010 SP1 - uses integrated windows and basic authentication. Has the appropriate registry key configured to allow users to change their AD password on first logon.
    I've registered an snp for "http/email.contoso.com mailserver-dc1", all SSL certificates being used are valid and my configuration used to allow users to login and change their password with "user must change password on first login"
    set in AD.
    If I launch a web browser on an internal server and point it to email.contoso.com I'm immediately presented with a generic Windows authentication request (similar to what's seen in ADFS) rather than the standard OWA page. No matter what I do, I cannot login
    and change my password using the correct URL. However if I point my browser at
    http://192.168.4.10/owa I'm prompted to login and I can change my password using the sam credentials.
    The only recent changes made are:
    - Disabling SSL 3.0 and enabling TLS  (http://www.isaserver.org/articles-tutorials/configuration-security/improving-ssl-security-forefront-threat-management-gateway-tmg-2010-published-web-sites.html)
    - Replacing the TMG listener certificates so that they now use SHA2 rather than SHA2 (certificates are trusted on each TMG server)
    Looking on the outer TMG and the DC logs I can see schannel errors which I believe are related to the problem. TMG monitoring also shows "Failed connection attempt: 1907 The user'spassword must be changed before logging on for the first time"
    I've checked that my inner TMG and DC are using the same certificate for server authentication and gone through this guide:
    http://blogs.technet.com/b/keithab/archive/2012/02/29/setting-up-and-troubleshooting-ldaps-authentication-in-forefront-tmg-2010.aspx
    If I try to use ldp.exe on the inner TMG, I get the error in the pic below
    Thanks
    IT Support/Everything

    Hi,
    You could try to analyze the TMG tracing and try the troubleshoot steps in the blog below.
    TMG 2010 – FBA, troubleshooting the change password feature 
    http://blogs.technet.com/b/isablog/archive/2012/05/07/tmg-2010-fba-troubleshooting-the-change-password-feature.aspx
    Best Regards,
    Joyce

  • AutoUnattend.xml - activation issue

    Greetings,
    I am in the process of building an image via the Windows AIK, using those tools, to accumulate drivers etc. that is needed in that package.
    My issue arises when I inject the product key into AutoUnattend.xml using Windows SIM. Where is the proper place to put it? I have heard everything from: windowsPE, specialize, auditSystem. Whenever I do some testing, the installed client says it
    has to activate, but encounters an error almost immediately. The error code does not seem relevant, since I am quite sure that the issue is there because of AutoUnattend.xml. 
    Does anyone have any idea, where it is best practice to put it? 
    (It's a Windows 8.1 Enterprise MAK product key. KMS is not an option)
    Thank you in advance.

    Hi,
    What's the specific error when system activation failed? As far as I know, Windows AIK contains Unattended Windows Setup Reference help file which you can refer to.
    For the unattended answer file contains an product key problem, following thread might be helpful with your problem.
    http://social.technet.microsoft.com/Forums/windows/en-US/1817a482-1021-41b6-9cf8-06fb5323677a/the-unattended-answer-file-contains-an-invalid-product-key?forum=w7itproinstall
    Roger Lu
    TechNet Community Support
    Thank you! This looks like it is what I wanted :)

  • Autounattend.xml - Set Language to English - Australia (en-AU)

    Hi all,
    Am trying to use the AIK's WSIM application to make my own Autounattend.xml file. This file, along with the Windows install source, is copied onto a USB stick / thumb drive, and the PC is booted from that drive to install Windows 7. Note that there is no
    WDS, no MDS or anything else in use here.
    The Autounattend.xml works in general, in that I can use it set disk partitions, accept the EULA and enter the license key. What does not work is the language and localisation - what I'm trying to set is:
    Input locale: en-AU (or 0c09:00000409)
    System locale: en-AU
    UI Language: en-AU
    UI Language Fallback: en-US
    User locale: en-AU
    Setup UI Language (winPE only): en-US
    I've tried setting this in the following passes:
    windowsPE: Microsoft-Windows-International-Core-winPE
    specialize: Microsoft-Windows-International-Core
    oobeSystem: Microsoft-Windows-International-Core
    It does not work: both the language / locale dialogs (one at the very start of setup, before the "Install Now ->" screen; and the other at the very end jus before the desktop appears) still appear, and still default to en-US for everything.
    Help! There seem to be various other posts (here and elsewhere) about this, but no resolution for the USB-only scenario. Similar issue seems to exist for en-GB.
    Even if I set everything to en-US, the langauge prompts still appear.
    Thanks
    Lukas

    Latest version of Autounattend.xml file (en-AU set in all 3 places):
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <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">
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>Boot</Label>
                                <Letter>C</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                </DiskConfiguration>
                <ImageInstall>
                    <OSImage>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>1</PartitionID>
                        </InstallTo>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                </UserData>
            </component>
            <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">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>0c09:00000409</InputLocale>
                <SystemLocale>en-AU</SystemLocale>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UILanguage>en-AU</UILanguage>
                <UserLocale>en-AU</UserLocale>
            </component>
        </settings>
        <settings pass="specialize">
            <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">
                <ProductKey>AAAAA-AAAAA-AAAAA-AAAAA-AAAAA</ProductKey>
                <RegisteredOrganization>Org</RegisteredOrganization>
                <RegisteredOwner>Owner</RegisteredOwner>
            </component>
            <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">
                <InputLocale>0c09:00000409</InputLocale>
                <SystemLocale>en-AU</SystemLocale>
                <UILanguage>en-AU</UILanguage>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UserLocale>en-AU</UserLocale>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <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">
                <InputLocale>0c09:00000409</InputLocale>
                <UILanguage>en-AU</UILanguage>
                <UILanguageFallback>en-US</UILanguageFallback>
                <UserLocale>en-AU</UserLocale>
                <SystemLocale>en-AU</SystemLocale>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:c:/windows%207%20setup/sources/install.wim#Windows 7 PROFESSIONAL" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

  • Autounattend.xml not launching from USB stick

    Hi All,
    I am currently tearing my hair out over this autounattend.xml which I am using as a part of image deployment for company I am working for.  I am currently deploying an image via a USB media and my autounattend.xml is currently in the root of my USB
    HDD.
    The windows image I am deploying is for Windows 7 x64 Professional, but whatever I do I am not able to automate this install. my .wim file is called install.wim (I kept it the same as the original which I deleted from source folder), new catalogue file called
    install_install.clg has been created via WSIM and replaced the Microsoft original .clg files which were in the source folder.  
    So, the USB launches the install but does not automate it, I am guessing because its either not seeing/reading the xml file in the root or the settings in the .xml file are incorrect I am including my .xml file info below, any help would be greatly appreciated.
    P.S. I am using Microsoft's generic windows activation key specifically for this purpose.
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <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">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>en-US</InputLocale>
                <SystemLocale>en-US</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-US</UserLocale>
            </component>
            <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">
                <DiskConfiguration>
                    <WillShowUI>OnError</WillShowUI>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Order>2</Order>
                                <Size>20480</Size>
                                <Type>Primary</Type>
                            </CreatePartition>
                            <CreatePartition wcm:action="add">
                                <Order>1</Order>
                                <Size>153600</Size>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>false</Active>
                                <Extend>false</Extend>
                                <Format>NTFS</Format>
                                <Label>Recovery</Label>
                                <Letter>D</Letter>
                                <Order>2</Order>
                                <PartitionID>3</PartitionID>
                            </ModifyPartition>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Extend>false</Extend>
                                <Format>NTFS</Format>
                                <Label>OS</Label>
                                <Letter>C</Letter>
                                <Order>1</Order>
                                <PartitionID>2</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                </DiskConfiguration>
                <ImageInstall>
                    <OSImage>
                        <InstallFrom>
                            <Path></Path>
                            <MetaData wcm:action="add">
                                <Key>/IMAGE/NAME</Key>
                                <Value>install</Value>
                            </MetaData>
                        </InstallFrom>
                        <InstallTo>
                            <DiskID>0</DiskID>
                            <PartitionID>2</PartitionID>
                        </InstallTo>
                        <InstallToAvailablePartition>false</InstallToAvailablePartition>
                        <WillShowUI>OnError</WillShowUI>
                    </OSImage>
                </ImageInstall>
                <UseConfigurationSet>true</UseConfigurationSet>
                <UserData>
                    <ProductKey>
                        <Key>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</Key>
                        <WillShowUI>OnError</WillShowUI>
                    </ProductKey>
                    <AcceptEula>true</AcceptEula>
                    <FullName>Integranet</FullName>
                    <Organization>Healthdirect Australia</Organization>
                </UserData>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-IE-InternetExplorer" 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">
                <CompanyName>Healthdirect Australia</CompanyName>
                <Home_Page>www.google.com.au</Home_Page>
            </component>
            <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">
                <OEMInformation>
                    <HelpCustomized>false</HelpCustomized>
                    <Manufacturer>Toshiba</Manufacturer>
                    <Model>Portege R930</Model>
                </OEMInformation>
                <ComputerName>NHCWS</ComputerName>
                <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
                <DoNotCleanTaskBar>false</DoNotCleanTaskBar>
                <ProductKey>FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4</ProductKey>
                <RegisteredOrganization>Healthdirect Australia</RegisteredOrganization>
                <RegisteredOwner>Healthdirect Australia</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <TimeZone>AUS Eastern Standard Time</TimeZone>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <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">
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>3</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>MQBuAHQAMwBnAHIAYQBOADMAdAAwADEAUABhAHMAcwB3AG8AcgBkAA==</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Description>Local Administrator</Description>
                            <DisplayName>Integranet</DisplayName>
                            <Group>Administrators</Group>
                            <Name>Integranet</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
                <RegisteredOrganization>Healthdirect Australia</RegisteredOrganization>
                <RegisteredOwner>Healthdirect Australia</RegisteredOwner>
                <ShowWindowsLive>false</ShowWindowsLive>
                <StartPanelOff>false</StartPanelOff>
                <TimeZone>AUS Eastern Standard Time</TimeZone>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="wim:c:/users/slavko.filipovich/desktop/windows%20image%20project/toshiba%20z930/toshiba%20z930%20windows%207%20x64%20(current)/sources/install.wim#install" xmlns:cpi="urn:schemas-microsoft-com:cpi"
    />
    </unattend>

    Hi,
    After the deployment, If an answer file is not specified, Windows Setup implicitly searches for an answer file in several different locations. The locations include a previously cached answer
    file, an answer file at the root of a drive, and other locations.
    As it is said in this article:
    http://technet.microsoft.com/en-us/library/cc749415(v=ws.10).aspx
    In your case, you use a usb hard disk, this will be recognized as a drive of the system, not an external device. I suggest to put the unattend.xml file at a flash driver at the root of the device.
    Regards
    Wade Liu
    TechNet Community Support

  • 9926 do not read AutoUnattend.xml from USB Key

    I had used a USB Key with an Autounattend.xml answer file from Windows Vista, Windows 7, Windows 8 until Windows 10 version 9979 without no problem.
    9926 do not read at all AutoUnattend.XML.
    I am interestind to know if somobody else had tried to deploy 9926 with an AutoUnattend.xml file ?

    Thank you for your answer.
    Here is my setupact.log and AutoUnattend.xml who work OK with all other versions of Windows 10 and Windows 8.1
    AutoUnattend.xml are not read by en_windows_10_enterprise_technical_preview_9926_x64_dvd_6244735 !
    X:\Windows\Setupact.log:
    2015-02-17 20:08:22, Info                  UI     Determining whether we should run ConX or legacy setup
    2015-02-17 20:08:22, Info                  UI     Running WinPE. Continue to run legacy setup
    2015-02-17 20:08:22, Info                  UI     Determining if we are in WDS/Unattend mode
    2015-02-17 20:08:22, Info                  UI     No need to hide autorun
    2015-02-17 20:08:22, Info       [0x0a000a] UI     Autorun:Autorun core successfully  initialized!!!
    2015-02-17 20:08:22, Info       [0x0a000b] UI     Autorun:Autorun UI successfully  initialized!!!
    2015-02-17 20:08:22, Info                  UI     AppWindow has layout style 0
    2015-02-17 20:08:22, Info                  UI     NavWindow has layout style 0
    2015-02-17 20:08:22, Warning    [0x0a0180] UI     Failed to change the UI language to en-US.
    2015-02-17 20:08:22, Info                  UI     CLocales::v_EnumLocalesProc - DownlevelGetLocaleInfoEx failed for locale ar-EG. Error: [1009]
    2015-02-17 20:08:22, Info                  UI     CLocales::v_EnumLocalesProc - DownlevelGetLocaleInfoEx failed for locale dz-BT. Error: [1009]
    2015-02-17 20:08:22, Info       [0x0a011c] UI     WizardDialogPost::SetActive
    AutoUnattend.xml:
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <servicing></servicing>
        <settings pass="windowsPE">
            <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">
                <InputLocale>fr-CH</InputLocale>
                <SystemLocale>fr-CH</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>fr-CH</UserLocale>
                <SetupUILanguage>
                    <UILanguage>fr-FR</UILanguage>
                </SetupUILanguage>
            </component>
            <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">
                <DiskConfiguration>
                    <WillShowUI>OnError</WillShowUI>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Order>1</Order>
                                <Type>Primary</Type>
                                <Extend>true</Extend>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>Local Disk</Label>
                                <Letter>C</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <WillWipeDisk>true</WillWipeDisk>
                        <DiskID>0</DiskID>
                    </Disk>
                </DiskConfiguration>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                    <FullName>Student</FullName>
                    <Organization>Cours</Organization>
                    <ProductKey>
                        <WillShowUI>OnError</WillShowUI>
                        <Key></Key>
                    </ProductKey>
                </UserData>
                <UseConfigurationSet>true</UseConfigurationSet>
                <ImageInstall>
                    <OSImage>
                        <InstallFrom>
                            <MetaData wcm:action="add">
                                <Key>/IMAGE/INDEX</Key>
                                <Value>1</Value>
                            </MetaData>
                        </InstallFrom>
                        <InstallToAvailablePartition>true</InstallToAvailablePartition>
                        <WillShowUI>OnError</WillShowUI>
                    </OSImage>
                </ImageInstall>
            </component>
            <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">
                <SetupUILanguage>
                    <UILanguage>fr-FR</UILanguage>
                </SetupUILanguage>
                <InputLocale>fr-CH</InputLocale>
                <SystemLocale>fr-CH</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>fr-CH</UserLocale>
            </component>
            <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">
                <DiskConfiguration>
                    <Disk wcm:action="add">
                        <CreatePartitions>
                            <CreatePartition wcm:action="add">
                                <Extend>true</Extend>
                                <Order>1</Order>
                                <Type>Primary</Type>
                            </CreatePartition>
                        </CreatePartitions>
                        <ModifyPartitions>
                            <ModifyPartition wcm:action="add">
                                <Active>true</Active>
                                <Format>NTFS</Format>
                                <Label>LocalDisk</Label>
                                <Letter>C</Letter>
                                <Order>1</Order>
                                <PartitionID>1</PartitionID>
                            </ModifyPartition>
                        </ModifyPartitions>
                        <DiskID>0</DiskID>
                        <WillWipeDisk>true</WillWipeDisk>
                    </Disk>
                </DiskConfiguration>
                <ImageInstall>
                    <OSImage>
                        <InstallToAvailablePartition>true</InstallToAvailablePartition>
                        <WillShowUI>OnError</WillShowUI>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <ProductKey>
                        <WillShowUI>Always</WillShowUI>
                    </ProductKey>
                    <AcceptEula>true</AcceptEula>
                    <FullName>Student</FullName>
                    <Organization>Cours</Organization>
                </UserData>
                <UseConfigurationSet>true</UseConfigurationSet>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-Deployment" 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">
                <RunSynchronous>
                    <RunSynchronousCommand wcm:action="add">
                        <Path>c:\windows\regedit.exe /S c:\WinApps\modifreg\modifreg.reg</Path>
                        <Order>1</Order>
                        <Description>ModifReg.reg</Description>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Path>c:\windows\system32\PNPUtil.exe -a c:\Drivers\HP3600\*.inf</Path>
                        <Order>2</Order>
                        <Description>HP3600</Description>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Order>3</Order>
                        <Path>c:\windows\system32\PNPUtil.exe -a c:\Drivers\INTEL\*.inf</Path>
                        <Description>DriversIntel</Description>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Order>4</Order>
                        <Description>NVIDIA210Silent</Description>
                        <Path>c:\windows\system32\PNPUtil.exe -a c:\Drivers\GeForce210\*.inf</Path>
                    </RunSynchronousCommand>
                    <RunSynchronousCommand wcm:action="add">
                        <Order>5</Order>
                        <Path>net user Administrateur /active:yes</Path>
                        <Description>net user Administrateur /active:yes</Description>
                    </RunSynchronousCommand>
                </RunSynchronous>
            </component>
            <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">
                <AutoLogon>
                    <Password>
                        <Value>UABhACQAJAB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <LogonCount>1</LogonCount>
                    <Username>Administrateur</Username>
                    <Enabled>true</Enabled>
                </AutoLogon>
                <ComputerName>*</ComputerName>
                <CopyProfile>true</CopyProfile>
            </component>
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="wow64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <StartPages>
                    <StartPage wcm:action="add">
                        <StartPageKey>google</StartPageKey>
                        <StartPageUrl>http://www.google.ch</StartPageUrl>
                    </StartPage>
                </StartPages>
                <Home_Page>http://www.google.ch</Home_Page>
                <TrustedSites>http://www.google.ch</TrustedSites>
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <AllowedSites>http://www.google.ch;http://www.microsoft.com</AllowedSites>
            </component>
            <component name="Microsoft-Windows-IE-InternetExplorer" 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">
                <FavoritesList>
                    <FavoriteItem wcm:action="add">
                        <FavTitle>Microsoft</FavTitle>
                        <FavURL>http://www.microsoft.com</FavURL>
                        <FavID>1</FavID>
                    </FavoriteItem>
                    <FavoriteItem wcm:action="add">
                        <FavID>2</FavID>
                        <FavURL>http://social.technet.microsoft.com/Forums/fr-FR/home</FavURL>
                        <FavTitle>social.technet.microsoft.com/Forums</FavTitle>
                    </FavoriteItem>
                    <FavoriteItem wcm:action="add">
                        <FavID>3</FavID>
                        <FavURL>http://www.microsoftvirtualacademy.com/training-courses/new-windows-server-2012-r2-jump-start?o=3303#?fbid=SHBa4Q0ku0f</FavURL>
                        <FavTitle>MicrosoftAcademy</FavTitle>
                    </FavoriteItem>
                    <FavoriteItem wcm:action="add">
                        <FavURL>http://borntolearn.mslearn.net/mct/general/w/errorlog/default.aspx#fbid=iAFmlsKo_3S</FavURL>
                        <FavTitle>MSLearnErrorLog</FavTitle>
                        <FavID>5</FavID>
                    </FavoriteItem>
                    <FavoriteItem wcm:action="add">
                        <FavID>4</FavID>
                        <FavURL>http://borntolearn.mslearn.net/mct/windowsserver/w/wiki/default.aspx#fbid=iAFmlsKo_3S</FavURL>
                        <FavTitle>MSLearnWiKi</FavTitle>
                    </FavoriteItem>
                    <FavoriteItem wcm:action="add">
                        <FavID>6</FavID>
                        <FavTitle>Companion-MOC</FavTitle>
                        <FavURL>http://www.microsoft.com/learning/en-us/companion-moc.aspx </FavURL>
                    </FavoriteItem>
                    <FavoriteItem wcm:action="add">
                        <FavURL>http://technet.microsoft.com/en-us/library/dn250019.aspx</FavURL>
                        <FavTitle>NewinWindowsServer2012R2</FavTitle>
                        <FavID>7</FavID>
                    </FavoriteItem>
                </FavoritesList>
                <Home_Page>http://www.google.ch</Home_Page>
                <TrustedSites>http://www.microsoft.com;http://www.bluewin.ch</TrustedSites>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <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">
                <AutoLogon>
                    <Enabled>true</Enabled>
                    <LogonCount>5</LogonCount>
                    <Username>LocalAdmin</Username>
                    <Password>
                        <Value>UABhACQAJAB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </Password>
                </AutoLogon>
                <Display>
                    <ColorDepth>32</ColorDepth>
                    <DPI>96</DPI>
                    <HorizontalResolution>1024</HorizontalResolution>
                    <RefreshRate>60</RefreshRate>
                    <VerticalResolution>768</VerticalResolution>
                </Display>
                <FirstLogonCommands>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>C:\Windows\Setup\Scripts\FirstLogon.vbs</CommandLine>
                        <Description>FirstLogon</Description>
                        <Order>1</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>C:\Windows\SETUP\SCRIPTS\RunOnceE.bat</CommandLine>
                        <Description>RunOnceE.bat</Description>
                        <Order>4</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <CommandLine>C:\Windows\SETUP\SCRIPTS\CopyDel.bat</CommandLine>
                        <Description>CopyDel</Description>
                        <Order>5</Order>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <Order>2</Order>
                        <Description>Office</Description>
                        <CommandLine>C:\Windows\ConfigSetRoot\Winapps\Office\setup.exe</CommandLine>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <Order>3</Order>
                        <CommandLine>PowerShell Set-ExecutionPolicy remotesigned -force</CommandLine>
                        <Description>RemoteSigned</Description>
                    </SynchronousCommand>
                    <SynchronousCommand wcm:action="add">
                        <Order>6</Order>
                        <CommandLine>net user administrator /active:yes</CommandLine>
                        <Description>net user administrator /active:yes</Description>
                    </SynchronousCommand>
                </FirstLogonCommands>
                <OOBE>
                    <NetworkLocation>Work</NetworkLocation>
                    <HideEULAPage>true</HideEULAPage>
                    <ProtectYourPC>1</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>UABhACQAJAB3ADAAcgBkAEEAZABtAGkAbgBpAHMAdAByAGEAdABvAHIAUABhAHMAcwB3AG8AcgBkAA==</Value>
                        <PlainText>false</PlainText>
                    </AdministratorPassword>
                    <LocalAccounts>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>UABhACQAJAB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <Name>LocalAdmin</Name>
                            <Group>Administrators</Group>
                            <DisplayName>LocalAdmin</DisplayName>
                            <Description>LocalAdmin</Description>
                        </LocalAccount>
                        <LocalAccount wcm:action="add">
                            <Password>
                                <Value>UABhACQAJAB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                                <PlainText>false</PlainText>
                            </Password>
                            <DisplayName>Administrator</DisplayName>
                            <Description>Administrator</Description>
                            <Group>Administrators</Group>
                            <Name>Administrator</Name>
                        </LocalAccount>
                    </LocalAccounts>
                </UserAccounts>
                <TimeZone>W. Europe Standard Time</TimeZone>
                <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet>
            </component>
        </settings>
        <settings pass="auditSystem">
            <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">
                <AutoLogon>
                    <Password>
                        <Value>UABhACQAJAB3ADAAcgBkAFAAYQBzAHMAdwBvAHIAZAA=</Value>
                        <PlainText>false</PlainText>
                    </Password>
                    <Enabled>true</Enabled>
                    <LogonCount>1</LogonCount>
                    <Username>Administrateur</Username>
                </AutoLogon>
            </component>
        </settings>
        <cpi:offlineImage cpi:source="catalog:d:/win81/sources/install_windows 8.1 enterprise.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
    </unattend>

Maybe you are looking for

  • Issue with the Battery on my N9, after 1.2 update.

    Right, since the 1.2 battery I'll be lucky to be at 20% after eight hours at work. I've got facebook and twitter notifications enabled. No RSS feeds. Calendar syncing. (hourly) No email. 3G is always on, alternatively wi-fi. I text most of the day, m

  • Usb 3.0 hard drive doesn't work

    i boot my laptop with ubuntu ,the usb3.0 hard drive could be recognized by usb3.0 port without external power, but archlinux cannot. the write speed is 43.7 MB/s in ubuntu. it seems like that this is only usb2.0 speed. can archlinux use usb3.0 as usb

  • Why does the edge of a rectangle show through image placed on top?

    I can't figure out why the edge of my yellow filled rectangle shows through the images I place over top of it. A very thin but visible line appears in my image when the rectangle has no stroke, and a thicker, dark line appears when I apply black stro

  • Creating a pdf from Webdynpro iview using "WebDynpro Java"

    Hi everybody,        I have a requirement like creating a pdf file from the iview content in a web dynpro project.          Can any one explain me the procedure as well as code how to create a pdf from the table content using the "WebDynpro Java".  T

  • Java.lang.IllegalStateException: algorithm ElGamal in provider ...

    below is the complete error message: java.lang.IllegalStateException: algorithm ElGamal in provider BLNT but class "com.belant.securityprovider.ElGamalCipher" inaccessible! I created Provider based on Java Cryptograhy written by Jonathan Knudsen, the