vote up 0 vote down star

In my output, I get

@{ActiveSyncEnabled=False}

how do I parse this so that it just says "False"?

the output is coming from this line of code:

 $pda = get-casmailbox -Anr $user.displayname | select activesyncenabled
flag

55% accept rate

2 Answers

vote up 0 vote down check

I don't have access to an exchange box right now, but the information should be there now for someone that does. Here is what worked:

$pda = get-casmailbox -Anr $user.displayname | select activesyncenabled $pda.ActiveSyncEnabled | Write-Host

link|flag
that didn't work.. the output is now "@{activesyncenabled.ActiveSyncEnabled=}" thanks – phill Jan 5 '09 at 20:45
When you say "output" how are you generating the output? Are you just doing Write-Host $pda? – EBGreen Jan 5 '09 at 20:50
I'm doing something similar .. $pda | write-host – phill Jan 5 '09 at 21:00
What if you go back to the way that you were populating $pda before then use this: $pda.ActiveSyncEnabled | Write-Host – EBGreen Jan 5 '09 at 21:11
hey that worked! I didn't know you could do that till now. thanks man – phill Jan 5 '09 at 21:18
vote up 1 vote down

To access the value directly:

(get-casmailbox -Anr $user.displayname).activesyncenabled

You can skip anr and use the identity member:

Get-CASMailbox $user.Identity

To get all activesyncenabled enabled mailboxes:

get-casmailbox -resultSize unlimited -filter {activesyncenabled -eq $true}

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.