# F5 APM Microsoft Exchange 2016 ## Microsoft Exchange specific config options for integration with F5 APM ### OWA 2010 Integrate Microsoft OWA and APM seems to be easy but the devil has to be found in the details. Example: The customer want to give the options like the light version or public- or private-computer to the users like here in OWA 2010:  When you log in, OWA offers the following options: - **This is a public or shared computer**: Allows you to be logged in for 1 hour before you are automatically logged out. - **This is a private computer**: Allows you to be logged in for 24 hours you are automatically logged out. - **Use the light version of Outlook Web App**: Removes some of the features of OWA. This settings are described here: [https://docs.microsoft.com/en-us/powershell/module/exchange/client-access-servers/set-owavirtualdirectory](https://docs.microsoft.com/en-us/powershell/module/exchange/client-access-servers/set-owavirtualdirectory?view=exchange-ps) ### OWA 2016 In OWA 2016 the logon screen look like the following: 
### Config Options Change the OWA logon options with the following settings: ```shell Set-OwaVirtualDirectory -LogonPageLightSelectionEnabled <$true | $false> Set-OwaVirtualDirectory -LogonPagePublicPrivateSelectionEnabled <$true | $false> ``` ### Direct URL for using the different OWA modes #### Documentation [Using Outlook Web App Web Parts](https://docs.microsoft.com/en-us/previous-versions/office/exchange-server-2010/bb232199(v=exchg.141)) [OWA Layout choice](https://www.msoutlook.info/question/898) [How to compose a New Message or Event and Populate fields in OWA](https://blogs.msdn.microsoft.com/carloshm/2016/01/16/how-to-compose-a-new-message-or-event-and-populate-fields-in-office365/) #### Layout Mode Type one of the following parameters behind the /owa/ part to change the layout.**?layout=tnarrow** | Single column layout optimized for small screens or when holding the tablet in portrait mode. This is the standard for recognized and supported smartphones. |
**?layout=twide** | Multi column layout optimized for larger touch screens or when holding the tablet in landscape mode. This is the standard for recognized and supported tablets. |
**?layout=tmouse** | Default layout optimized for mouse usage. This is the standard on normal desktops and devices with a supported browser. When the browser isn’t supported, OWA Light will be loaded instead. |
**?layout=light** | Light Layout for low bandwidth usage |