Disable Boot Logo in IoT

NeilS 1 Reputation point
2021-09-30T09:39:02.813+00:00

Hi.
I would like to disable the Windows logo during boot of IoT when building a new OS image. (Ideally i would like to change it to a custom mage, but that is another question).

I am able to do it at runtime via bcdedit, setting bootuxdisable to on.

There are steps in https://learn.microsoft.com/en-us/windows-hardware/manufacture/iot/oscustomizations, chapter BCD Settings, detailing how to disable the Boot Progress Animation Circle (which do not appear to actually work, as the animation still appears) by adding the CUSTOM_BCD feature to the image. I can see from the generated bcd that it has taken effect (the setting "nobootuxprogress" is set to "Yes").

Is there a WellKnownType that corresponds to the "bootuxdisable" bcd option? Is there a list of WellKnownTypes anywhere?

Many thanks

Windows for IoT
Windows for IoT
A family of Microsoft operating systems designed for use in Internet of Things (IoT) devices.
382 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Seeya Xi-MSFT 16,436 Reputation points
    2021-10-01T07:18:09.097+00:00

    Hi @NeilS ,

    Here is a similar thread: https://www.raspberrypi.org/forums/viewtopic.php?t=118442#p804313
    The main process is as follows:
    bcdedit /set quietboot on
    bcdedit /set bootux Disabled
    bcdedit /set bootuxdisabled on
    And here is a another method about registry: https://itectec.com/superuser/hide-the-logon-screen-windows-10-iot/

    Best regards,
    Seeya


    If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking for similar queries.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

  2. Sean Liming 4,511 Reputation points
    2021-10-07T15:31:00.77+00:00

    How about placing the suggested bcdedit calls into one of the startup scripts? oemcustomization.cmd

    0 comments No comments