You need to prevent users from changing their password using Outlook Web Access (OWA).

You have an Exchange Server 2010 organization.

You need to prevent users from changing their password using Outlook Web Access (OWA).

What should you do?

You have an Exchange Server 2010 organization.

You need to prevent users from changing their password using Outlook Web Access (OWA).

What should you do?

A.
Create a Group Policy Object.

B.
Create an OWA mailbox policy.

C.
Modify the authentication settings of the OWA virtual directory.

D.
Modify the authentication settings of the IISADMPWD virtual directory.



Leave a Reply 2

Your email address will not be published. Required fields are marked *


rv

rv

For questions #325 and #372, they show different answers, so if possible, I was looking for some clarification.
Thank you.

question 372
You need to prevent users from changing their password using Outlook Web Access
– create an OWA mailbox policy.

question 325
You need to prevent users from changing their password using Outlook Web Access
– modify the authentication settings of the OWA virtual directory.

shivappa

shivappa

Right answer will be modify the authentication settings of the OWA virtual directory

simply enter the below command replacing servername with the server hosting the virtual directory.

Set-OwaVirtualDirectory -Identity “servername\owa (Default Web Site)” -ChangePasswordEnabled $false

To change all servers at once run the following.
Get-OwaVirtualDirectory | Set-OwaVirtualDirectory -ChangePasswordEnabled $false

Then run:
IISreset