Link to home
Start Free TrialLog in
Avatar of Jorge Ocampo
Jorge OcampoFlag for United States of America

asked on

Need to Bulk Convert Shared Mailboxes in office 365

i try the below but it didn't work

$ConvertToShared = import-csv c:\Mailboxes-ConvertToShared.csv Foreach ($User in $ConvertToShared) {set-o365mailbox -Identity $user.PrimarySMTPAddress -Type Shared}
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

Can you try this way...
$ConvertToShared = import-csv "c:\Mailboxes-ConvertToShared.csv"
ForEach ($User in $ConvertToShared) {
set-o365mailbox -Identity $user.PrimarySMTPAddress -Type Shared
}

Open in new window


Will.
Avatar of Jorge Ocampo

ASKER

i place that on powershell exactly like it is
any one with ideas?
ASKER CERTIFIED SOLUTION
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada 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