Hello, To prevent the Start Menu from automatically opening on first user login, you can modify the Windows Registry to disable the “First Logon Animation”. Here’s how: Open the Registry Editor. To do this, press Win + R to open the Run dialog box, then type regedit and press Enter. Navigate to this key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon Look for the EnableFirstLogonAnimation key. If it doesn’t exist, right-click on the right pane, select New > DWORD (32-bit) Value, and name it EnableFirstLogonAnimation. Double-click on EnableFirstLogonAnimation key and set its value to 0 to disable the first logon animation (which includes opening the Start Menu). Close the Registry Editor and restart your computer to apply the changes. Please note: Modifying the Windows Registry can cause serious problems if not done correctly. Always backup your data and/or the Registry before making changes. If you want to apply this setting in your unattend.xml, you can add the following lines under the appropriate configuration pass (for example, specialize or oobeSystem): <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"> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>reg add HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f</CommandLine> <Description>Disable first logon animation</Description> <Order>1</Order> </SynchronousCommand> </FirstLogonCommands> </component> </settings> This script will run a command to modify the Windows Registry during the OOBE phase, effectively disabling the first logon animation. Best Regards, Hania Lian
If the Answer is helpful, please click "Accept Answer" and upvote it.