Link to home
Start Free TrialLog in
Avatar of Randall Storm
Randall StormFlag for United States of America

asked on

Reset Exchange 2007 mailbox password with Powershell

Need to know how to reset mailbox passwords in Exchange 2007.  It looks like the only way to do so is through the Powershell.  Thanks a heap, MSFT!  Can anyone help with Explicit commands on how to do this?  Thanks.
Avatar of Rajith Enchiparambil
Rajith Enchiparambil
Flag of United Kingdom of Great Britain and Northern Ireland image

NO. Just take AD Users and Computers, find the user, right click and reset password.

That's all. There isn't anything specifc in exchange 2007. It's the same as 2003.
Avatar of Randall Storm

ASKER

Please do not send me an answer that I did not ask for.  If it was possible for me to do this in AD, I would not have posted this question.  This CAN be done within the Powershell, I just need the commands in the correct syntax.
You will be prompted for a password if you create a new mailbox from the shell. Otherwise, you will have to write a script to change the user password.
Okay, then I need a script to change the password(s).
ASKER CERTIFIED SOLUTION
Avatar of flaphead_com
flaphead_com
Flag of United Kingdom of Great Britain and Northern Ireland 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
so did u get to try this?
Avatar of GusGallows
Try the following:
set-mailbox -identity user@domain.com -password pass1234 

Open in new window

set-mailbox -identity user@domain.com -password pass1234   WONT WORK.

You can only natively reset the password at next login, otherwise you will need to write a script.

set-user -identity username -resetpasswordonnextlogon:$true
SOLUTION
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
gents, my post works no add on's needed or the exchange 2007 management shell ... just pure powershell .. as it should be!
Hey guys, thanks for the help, I am snowed under with another fire at the moment and will try solution(s) as soon as I can.
Thanks for your help! Unfortunately, due to time and boss constraints, I was not able to test your solutions, but believe that either would work.  The problem is that management did not want to create users on the domain controllers for these accounts, so we just had Exchange mailboxes for them.  Therefore, any changes needing containers, domain names, org. units, etcs was problematic.  Finally had to create users on the domain just to get the problem resolved and everyone off my back.  Sorry about the delay getting back to you.