cancel
Showing results for 
Search instead for 
Did you mean: 

EVDominoExchangeMigration - Script

Greenroomboy
Level 4

Hi Everyone, Has anyone used the above to migrate shotcuts from Domino to Exchange?

 

I'm specifically looking at scripting the procedure as we have over 7000 users to migrate.

 

All is working perfectly with the migrations. So far all tests we have done the EV migration manually.

 

EVDominoExchangeMigration [-?] -ex ExchangeServer -sm SystemMailbox -eu ExchangeSMTPAddress -du DominoUserName -po ExchangeMailboxPolicy -lf LogFileFolder

 

Has anyone got a script or can help me write one to make this process less painful? I would really appreciate your help.

1 REPLY 1

MichelZ
Level 6
Partner Accredited Certified

Hi

 

This depends on what you can provide... ;)

E.g. if you can supply a file which has all needed values in it seperated by let's say ";", then one could easily write a little batch file.

 

For example, file "migration.txt" with the following content (for every user, one per line):

ExchangeServer;SystemMailbox;ExchangeSMTPAddress;DominoUserName;ExchangeMailboxPolicy

 

e.g.:

USWASH-EX1;EnterpriseVaultSvc;some.mail@example.com;SomeUser;DefaultExchangePolicy

USWASH-EX2;EnterpriseVaultSvc;some.other@example.com;SomeOtherUser;DefaultExchangePolicy

 

Would give a batch file "migration.cmd":

 

for /f "tokens=1,2,3,4,5 delims=;" %%a in (migration.txt) do (

EVDominoExchangeMigration -ex %%a -sm %%b -eu %%c -du %%d -po %%e -lf C:\MigrationLogFolder

)

 

(I have NOT tested this mini-batch, please test it first before you use it. You definitely use it at your own risk. ;) )

 

Cheers

Michel

Message Edited by MichelZ on 12-02-2008 07:49 AM

cloudficient - EV Migration, creators of EVComplete.