FavoriteBarItem (microsoft-windows-microsoftedgebrowser-favoritebaritems-favoritebaritem)

FavoriteBarItem contains the settings used to add predefined Favorite items to the Favorite bar. A Favorite can include web content such as links or feeds. To add a predefined Favorite bar item in Windows System Image Manager, add the FavoriteBarItems component to your answer file. Next, right-click FavoriteBarItems, and select Insert New FavoriteBarItem.

Values

Value Description
ItemFavIconFile Specifies an icon to associate with the Favorite (example: C:\Windows\favlink1.ico).
ItemKey Specifies a unique key for the Favorite (example: Favorite1).
ItemName Specifies a name that appears in the Favorite bar (example: Bing News).
ItemUrl Specifies a path to the Favorite (http://... or https://...).

Valid Configuration Passes

specialize

Parent Hierarchy

Microsoft-Windows-MicrosoftEdgeBrowser | FavoriteBarItems | FavoriteBarItem

Applies To

To determine whether a component applies to the image you’re building, load your image into Windows SIM and search for the component or setting name. For information on how to view components and settings, see Configure Components and Settings in an Answer File.

XML Example

<FavoriteBarItems>
    <FavoriteBarItem wcm:action="add">
        <ItemFavIconFile>C:\Windows\favlink1.ico</ItemFavIconFile>
        <ItemKey>Favorite1</ItemKey>
        <ItemName>Bing News</ItemName>
        <ItemUrl>https://bing.com/news</ItemUrl>
    </FavoriteBarItem>
    <FavoriteBarItem wcm:action="add">
        <ItemFavIconFile>C:\Windows\favlink2.ico</ItemFavIconFile>
        <ItemKey>Favorite2</ItemKey>
        <ItemName>Bing Maps</ItemName>
        <ItemUrl>https://www.bing.com/maps</ItemUrl>
    </FavoriteBarItem>
</FavoriteBarItems>

FavoriteBarItems