AccountName (Standard 8 Module Reference)

7/8/2014

Review the applicable Feature modules and any examples for the AccountName setting in Windows Embedded 8 Standard (Standard 8).

This setting contains a string that specifies the name of a user account.

Modules

The following table shows the modules that you can apply this setting to. In Image Configuration Editor (ICE), you can follow the corresponding path to set this setting for a module.

Module

Path

Windows 8 Application Launcher

Features/Branding/Windows 8 Application Launcher/UserSettings/User/AccountName

Shell Launcher

Features/Shell/Shell Launcher/UserSettings/User/AccountName

XML Example

The following XML example shows how to set the name of a user account. The name of the account must match a user account that is defined in the UserAccounts setting of Shell-Setup, under Embedded Core, during the oobeSystem settings pass.

<settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <UserAccounts>
            <LocalAccounts>
                <LocalAccount wcm:action="add">
                    <Password>
                        <PlainText>false</PlainText>
                    </Password>
                    <Name>Cashier</Name>
                </LocalAccount>
            </LocalAccounts>
        </UserAccounts>
    </component>
    <component name="Microsoft-Windows-Embedded-ShellLauncher" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <UserSettings>
            <User wcm:action="add">
                <AccountName>Cashier</AccountName>
                <Key>1</Key>
                <Shell>explorer.exe</Shell>
            </User>
        </UserSettings>
    </component>
</settings>

See Also

Concepts

Feature Module Settings