disabling default feature while creating a new account
whenever i make a new account it has all the features enabled by default but I only want MAPI as default feature for any newly created account. thanks
May 11th, 2010 5:33pm
I am assuming this is Exchange 2007/2010. You can't disable those by default as far as I know. You can incorporate a script in your new user creation and run the set-casmailbox to set all features to FALSE that you don't want enabled.Exchange & Powershell Geek MCITP: Enterprise Messaging Administrator 2007
Free Windows Admin Tool Kit Click here and download it now
May 11th, 2010 5:39pm
yes it is exchange 2007.
so whenver I create a new account do i need to diable the features one by one ??
May 11th, 2010 5:45pm
yes it is exchange 2007.
so whenver I create a new account do i need to diable the features one by one ??
What you want to do is create a provisioning script, as recommended by Aaron, to set the options you want when you create the user. This may also help:
How to Use Templates to Create Recipients
http://technet.microsoft.com/en-us/library/bb125152(EXCHG.80).aspx
Free Windows Admin Tool Kit Click here and download it now
May 11th, 2010 6:05pm
He's telling you that you could write a small PowerShell script to automate that.
--
Ed Crowley MVP
"There are seldom good technological solutions to behavioral problems."
.
"Vministrator" wrote in message
news:102c039f-ff5d-4194-8e15-90b924f592a5...
yes it is exchange 2007.
so whenver I create a new account do i need to diable the features one by one ??
Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."
May 11th, 2010 6:15pm
yes i know and did it already organization wide. Or better create a new mailbox using the script.
thanks
Free Windows Admin Tool Kit Click here and download it now
May 11th, 2010 6:28pm
Get-casmailbox |set-casmailbox -imapenabled:$false -popenabled:$false -owaenabled:$false -ActiveSyncEnabled:$false
Managing User Mailboxes
http://technet.microsoft.com/en-us/library/bb123720(EXCHG.80).aspx
Set-CASMailbox
http://technet.microsoft.com/en-us/library/bb125264(EXCHG.80).aspx
Regards,
Xiu
May 12th, 2010 9:33am