Link to home
Start Free TrialLog in
Avatar of happyexchange
happyexchange

asked on

Exchange 2007 moving storage groups

Hi please see attachment.

We have created a new storage group and inside of that 3 new databases. called NetApp Mailbox Database-01 + 02 + 03
The storage group is called Netapp storage group 01

In the attchment is there a script i can use to move all those over. Instead of doing it one at a time

Thank you

Thank you
Avatar of abhijitmdp
abhijitmdp
Flag of India image

Plz check once again, You forget to attach any file.
Avatar of happyexchange
happyexchange

ASKER

Sorry here is the file
dat01.csv.xls
ASKER CERTIFIED SOLUTION
Avatar of abhijitmdp
abhijitmdp
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
No i need to move the users from the storage groups to the storage group

So for example East Thames Voids needs to be moved from First Storage Group to NetApp Mailbox Database-03

Need a script so i can move all those users on the spreadsheet

Thank you

 
You can below command as well instead of a script

Get-Mailbox -database First Storage Group\NetApp Mailbox Database-03 | move-mailbox Fourth Storage Group\NetApp Mailbox Database-03

Modify the name of storage group and database as per your requirment.
Wait for a sec. I am going to modify the cmdlet again. dont use the previous one.
Use below command
Get-Mailbox First Storage Group\NetApp Mailbox Database-03 | move-mailbox -TargetDatabase "MailboxServer\StorageGroup01\MailboxStore01" -MaxThreads 10 -confirm:$false
Modify the server name, storage group and name of database as per your requirment
Thank u