Quantcast
Channel: TechCenter
Viewing all articles
Browse latest Browse all 2350

Force Mailbox-Creation Policy upon User creation outside from ARS

$
0
0
Revision 1 posted to Active Roles Script Center by DELL-Tatiana G on 2/24/2014 6:13:41 AM

Back to User management: Other

Back to Exchange management

DESCRIPTION

This script forces Policy "Controls selection of mailbox stores where Exchange mailbox creation is allowed." to create a mailbox according to the ARS-specific policy settings, when a user object is created outside of ARS, e.g. within ADUC.

Copy the following script to a handler script box, point a policy to this policy script, set the scope and check the boxes "Handle changes from the DirSync control" in the properties of the script execution connection.

Make sure to apply an ARS-specific Mailbox provisioning policy to the same scope as for this policy.

Author: Dirk Wahlefeld


Note This code may use functions from the ARS Script Policy Best Practices. Please, follow the link to obtain instructions and code for those functions.


SCRIPT

 

'*********************************************************************************

' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,

' EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED

' WARRANTIES OF MERCHANTBILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.

'

' IF YOU WANT THIS FUNCTIONALITY TO BE CONDITIONALLY SUPPORTED,

' PLEASE CONTACT QUEST PROFESSIONAL SERVICES.

'*********************************************************************************

'

' This code is published on the ActiveRoles Script Center:

' http://communities.quest.com/docs/DOC-9991

'

' This code may use functions from the ARS Script Policy Best Practices:

' http://communities.quest.com/docs/DOC-10016

'

' Please, follow the link to obtain instructions and code for those functions.

'*********************************************************************************

Option Explicit

Sub onPostCreate(Request)

'--- Check the addressed object class, in this case "user". It could be any object class, just name it

'--- Optimization: process only user objects

If (LCase(Request.Class) "user") Then Exit Sub

'--- Check for modifications, made in AD, which are then synchronized to ARS

'--- Optimization: process only modifications, received from DC by DirSync

If (Request.Parameter("RequestSource") = EDST_MOD_SOURCE_CLIENT) Then Exit Sub

If (Request.Parameter("RequestSource") = EDST_MOD_SOURCE_DB) Then Exit Sub

'--- Check if a object already have any mailbox and mailNickNAme

Dim strHomeMDB, strmailNickname, strsAMAccountName

DirObj.GetInfoEx Array("homeMDB", "mailNickname", "sAMAccountName"), 0

On Error Resume Next

strHomeMDB = DirObj.Get("homeMDB")

On Error GoTo 0

On Error Resume Next

strsAMAccountName = DirObj.Get("sAMAccountName")

On Error GoTo 0

If (Not IsEmpty(strHomeMDB)) Then Exit Sub

'--- React on these changes, e.g. Set the following attribute to the value "true",

'--- to force the mailbox creation routine in ARS, to create a mailbox.

'--- The following attribute change forces ARS to create a mailbox, if there is a mailbox provisioning rule set on the OU!

'--- So, configure a Email-Alias and mailbox psovisioning policy first!

DirObj.Put "mailNickname", strsAMAccountName

DirObj.Put "edsaCreateMsExchMailbox", "true"

DirObj.SetInfo

End Sub

'***** END OF CODE ***************************************************************

COMPATIBILITY

Script compatible with the following version(s): <Not specified>

Back to User management: Other

Back to Exchange management


Viewing all articles
Browse latest Browse all 2350

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>