Helo, is it possible to define automatic user cration, but at the same time have have prompt to enter machine name in oobe, or even better at setup begining? I used to have this set up in custom RIS page in XP, but now i would like this to be in setup on windows7 installation on USB stick. I tought that maybe there is way to run some autoscript in begining of winpe phase that will set this - but i'm not sure how to do it exactly  This is autounattended.xml that i tought would achieve behavior i wanted in OOBE phase of setup, but obviously it did not work:) <?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>0409:00000409	</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">             <UserData>                 <ProductKey>                     <Key>49PB6-6BJ6Y-KHGCQ-7DDY6-TF7CD</Key>                     <WillShowUI>OnError</WillShowUI>                 </ProductKey>                 <AcceptEula>true</AcceptEula>             </UserData>             <DiskConfiguration>                 <WillShowUI>Always</WillShowUI>             </DiskConfiguration>             <ImageInstall>                 <OSImage>                     <InstallFrom>                         <MetaData wcm:action="add">                             <Key>/IMAGE/NAME</Key>                             <Value>Windows 7 Ultimate</Value>                         </MetaData>                     </InstallFrom>                 </OSImage>             </ImageInstall>         </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>                 <ProtectYourPC>3</ProtectYourPC>                 <NetworkLocation>Home</NetworkLocation>             </OOBE>             <TimeZone>Central Europe Standard Time</TimeZone>             <ShowWindowsLive>false</ShowWindowsLive>             <RegisteredOwner></RegisteredOwner>             <UserAccounts>                 <LocalAccounts>                     <LocalAccount wcm:action="add">                         <Name>userCreationTest</Name>                     </LocalAccount>                 </LocalAccounts>             </UserAccounts>         </component>     </settings>     <cpi:offlineImage cpi:source="wim:c:/win7unattended/source/sources/install.wim#Windows 7 ULTIMATE" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend> UPDATE: interestingly now i tried it again it is working (i must made some mistake in first run), also i needed to add blank password or else user would be asked to change password on first logon.  I still wonder if is it possible to put dialog to choose computer name in winPE phase - it would definitely be timesaver.