Cannot process argument transformation on parameter 'Identity'

8.9k Views Asked by At

Ok, it's this stuff, right here... o( ><)o

 $PubFolder = "SomeMailEnabledFolder"
 Get-MailPublicFolder $PubFolder | Get-PublicFolder

This should be so. dang. simple...

The error returned:

Cannot process argument transformation on parameter 'Identity'. Cannot convert value "MyDomain/Microsoft Exchange System Objects/Mailbox Name" to type "Microsoft.Exchange.Configuration.Tasks.PublicFolderIdParameter". Error: "The value provided for parameter "MyDomain/Microsoft Exchange System Objects/Mailbox Name" isn't in the correct format. The correct format is "<FolderPath>"."

I have tried a bunch of stuff, like catenating a slash into it, passing the $var.name parameter, hurling my best Shakespearian insults at my monitor, etc... Nothing works.

I am ready to punch a dolphin at this point... I have a feeling the answer is simple, which will annoy me even further, but cest' la vie.

I beseech you... Save a dolphin (actually, I might not win a fight with a dolphin come to think of it, nevertheless), and lend a hand...

You have my gratitude in advance.

May the Force be with you.

1

There are 1 best solutions below

1
On

Thank you Theo , posting your suggestion as an answer to help other community members.

"You can try simply Get-PublicFolder -Mailbox $PubFolder , And If you want all mail enabled Public folders you can do Get-PublicFolder -Recurse -ResultSize Unlimited | Where-Object { $_.MailEnabled -eq $true }"

For more information please refer this MS DOC: Cannot process argument transformation error for cmdlets