So I'm exporting contacts from Exchange to PST using...
New-MailboxExportRequest user -FilePath ("\\path-to-server\contacts.pst") -IncludeFolders "#Contacts#" -excludedumpster
But it's not exporting everything, it's exporting only user\Contacts... it's not including Personal or Work.
Get-mailboxfolderstatistics dantignac -FolderScope contacts | select identity,name,folderpath,fo
ldertype,ItemsinFolder,foldersize
Identity : user\Contacts
Name : Contacts
FolderPath : /Contacts
FolderType : Contacts
ItemsInFolder : 80
FolderSize : 134.2 KB (137,437 bytes)
Identity : user\Personal
Name : Personal
FolderPath : /Personal
FolderType : User Created
ItemsInFolder : 1
FolderSize : 4.883 KB (5,000 bytes)
Identity : user\Work
Name : Work
FolderPath : /Work
FolderType : User Created
ItemsInFolder : 1
FolderSize : 4.775 KB (4,890 bytes)
What can I do to include everything?