Expand dashboard navigation

is it possible to automatically expand a dashboard navigation?
we use new-udlistitem -children to create a nested menu structure and would like this to be expanded when each page loads - rather than the user clicking and drilling down.

Tthe -open switch should do the trick

New-UDListItem -Label "Parent" -Children {
        New-UDListItem -Label 'Child'
} -Open
1 Like