TransWikia.com

Get list of Outlook Favorite Item via Powershell

Server Fault Asked by Biren on December 9, 2020

Hy Guys, I Trying Get list of Outlook Favorite Item via Powershell, but i couldn’t, I have created the script for Inbox and others, it’s working, but having trouble with favorite item, can anyone help to do same for Favorite, really apricated if you can

$Outlook = New-Object -com Outlook.Application
$Namespace = $outlook.GetNamespace("MAPI")
$PublicFolder = $Namespace.Folders.Item("Favoirets – [email protected]")

enter image description here

2 Answers

This code will list Favorites

$ol = New-Object -ComObject Outlook.Application
$ex = $ol.Application.ActiveExplorer()
$mm = $ex.NavigationPane.Modules.GetNavigationModule(0)
$favorites = $mm.NavigationGroups.GetDefaultNavigationGroup(4)
$favorites.NavigationFolders | Select-Object -ExpandProperty folder | Select-Object FolderPath

Correct answer by jfrmilner on December 9, 2020

I found a similar thread for your reference: Get list of Outlook Favorite Item via Powershell

The script to fix your problem is similar with jfrmilner's:

$OutlookObject=New-Object -ComObject Outlook.Application
$ActiveExplorer=$OutlookObject.Application.ActiveExplorer()
$NModule=$ActiveExplorer.NavigationPane.Modules.GetNavigationModule(0)
$FavFolder=$NModule.NavigationGroups.GetDefaultNavigationGroup(4)
$FavFolder.NavigationFolders|select -expand folder|select Name | Out-File -FilePath "C:Favourite.txt"

Answered by Ivan_Wang on December 9, 2020

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP