I use the following command to delete the contents of a mailbox, but it still prompts me to confirm. Is there a way to not prompt me.

Search-Mailbox -id "UserName" -DeleteContent -Confirm:$false
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

The way to stop prompting is to use the -Force parameter (if the cmdlet supports it).

Setting -Confirm to $false just means "prompt me if you need to." Setting -Confirm to $true means "prompt me every time."

link|improve this answer
feedback

There seems to be a syntax error -confirm like -DeleteContent is a SwitchParameter this means that you just have to omit it.

Search-Mailbox -id "UserName" -DeleteContent 
link|improve this answer
That syntax is correct, but it isn't needed. – JasonMArcher May 18 '11 at 15:46
Thanks, I was not knowing that. – JPBlanc May 18 '11 at 16:28
feedback

Your Answer

 
or
required, but never shown

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