Hi,
I am preparing a SYSPREP using Windows 8.1 Pro x64 with a MAK key and i am unable to get the FirstLogonCommands to run when the automatic first logon happens.
Everything seems to be in place in my unattend.xml file. In Windows 7 pro i didn't had any problem with the firstLogonCommands...
The firstlogon is an Admin so it is not UAC related.
here's a sample of the commands i want to execute in my unattend.xml :
<AutoLogon><Password><Value>EncodedPSWDHere</Value><PlainText>false</PlainText></Password><Username>Administrator</Username><LogonCount>1</LogonCount><Enabled>true</Enabled></AutoLogon><FirstLogonCommands><SynchronousCommand wcm:action="add"><Order>1</Order><CommandLine>cscript //B "%windir%\system32\slmgr.vbs" /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</CommandLine><Description>Install MAK Key</Description><RequiresUserInput>false</RequiresUserInput></SynchronousCommand><SynchronousCommand wcm:action="add"><CommandLine>cmd.exe /c C:\Folder\RunOnce.exe</CommandLine><Order>4</Order><RequiresUserInput>true</RequiresUserInput><Description>Agent Zenworks - Param Novell Client</Description></SynchronousCommand><SynchronousCommand wcm:action="add"><CommandLine>cmd.exe /c control intl.cpl,, /f:"C:\Folder\LangSet.xml"</CommandLine><Order>3</Order><RequiresUserInput>false</RequiresUserInput><Description>Remove unwanted keyboards</Description></SynchronousCommand><SynchronousCommand wcm:action="add"><Order>2</Order><CommandLine>cscript //B "%windir%\system32\slmgr.vbs" /ato</CommandLine><Description>Activate Windows</Description><RequiresUserInput>false</RequiresUserInput></SynchronousCommand></FirstLogonCommands>
Any idea why they won't execute ?