My unattended setup stalls between mini-setup and GuiRunOnce command execution. The user must manually logoff or restart after adding a user in the mini-setup. Once that has been done, GuiRunOnce commands execute as expected. Textmode setup completes as expected. CMDLINES.TXT is called, does its thing (HKCU tweaks). Next mini-setup kicks in, asks about WU, LAN, and asks for a user name. I want this operation - it forces users to create an Administrator not named Administrator). I enter a user name, click next then finish. Setup then presents a desktop with my newly created user logged and stalls until a user manually logs off or restarts. Then GuiRunOnce commands execute. It only takes a logoff/restartto get things going again. How do I get setup to perform that logoff/restart without user intervention. That is, how do I eliminate the "stall" between the end of mini-setup and the start of GuiRunOnce commands? It's got to be something simple, any suggestions appreciated. I tried, but while searching the forums was educational, I just got too many hits to read everything on "mini-setup/runonce/stall/restart" searches. Thanks. Dave WINNT.SIF  [Data]     AutoPartition = 0     MsDosInitiated = 0     UnattendedInstall = Yes  [Unattended]     UnattendMode = FullUnattended     UnattendSwitch = No     DriverSigningPolicy = Ignore     FileSystem = *     Hibernation = No     OemPreinstall = Yes     OemSkipEula = Yes     TargetPath = \WINDOWS     WaitForReboot = No     NoWaitAfterGUIMode=1     NoWaitAfterTextMode=1  [GuiUnattended]     AdminPassword = *     OEMSkipRegional = 1     OemSkipWelcome = 1     TimeZone = 035  [UserData]     ProductKey = XXXXX-XXXXX-XXXXX-XXXXX-XXXXX     FullName = XXX     OrgName = XXX     ComputerName = COMPUTER1  [Display]     BitsPerPel = 32     Xresolution = 1024     YResolution = 768     Vrefresh = 75     AutoConfirm = 1  [TapiLocation]     CountryCode = 1     Dialing = Tone     AreaCode = 999  [RegionalSettings]     LanguageGroup = 1     Language = 0409  [Identification]     JoinWorkgroup = MSHOME  [Networking]     InstallDefaultComponents = Yes  [Components]     msmsgs = off     freecell = off     hearts = off     minesweeper = off     pinball = off     solitaire = off     spider = off     zonegames = off  [Shell]     DefaultStartPanelOff = No     DefaultThemesOff = No  [GuiRunOnce]     Command0="nircmd exec hide %systemdrive%\install\xp\runonceex.cmd"  [IEPopupBlocker]     BlockPopups = Yes     FilterLevel = Low     ShowInformationBar = Yes  [WindowsFirewall]     Profiles = WindowsFirewall.TurnOffFirewall  [WindowsFirewall.TurnOffFirewall]     Mode = 0       Home_Page = [url="http://www.google.ca"]http://www.google.ca  RunOnceEx.cmd  : RunOnceEx.cmd setlocal enableextensions set cdrom=%~d0 set key=HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx reg add "%key%"     /f /v title /d "Installing Applications" reg add "%key%\005" /f /ve      /d "Registry Tweaks" reg add "%key%\005" /f /v 1     /d "%systemdrive%\install\xp\hklm.cmd" reg add "%key%\010" /f /ve      /d "Adobe Acrobat Reader 9.0" reg add "%key%\010" /f /v 1     /d "%systemdrive%\install\acrobat\AdobeReader90.exe /sAll /rs" endlocal  HKLM.CMD  : HKLM.CMD setlocal enableextensions set key=HKLM\Software\Microsoft reg add "%key%\MessengerService\Policies" /v "DisableCrossPromo" /t reg_binary /d 80 /f rem etc... endlocal CMDLINES.TXT  [COMMANDS] "nircmd exec hide .\$1\install\xp\hkcu.cmd" HKCU.CMD  : HKCU.CMD setlocal enableextensions reg add "HKCU\Control Panel\Desktop" /v MenuShowDelay /t reg_sz /d 100 /f rem etc.... endlocal