Which cmdlet should you use for each requirement?

Your company recently deployed Exchange Server 2016.
Users use a variety of mobile devices to access their mailbox, including iPhones and iPads.
You need to configure security for the users who connect to the corporate network by using their mobile device.
The solution must meet the following requirements:
Users must be required to enter a complex password to unlock their device.
Only devices that run iOS 8 or later must be allowed to connect to the Exchange Server organization.
Users who fail to download the security settings defined by the organization must be prevented fromaccessing their mailbox.
Which cmdlet should you use for each requirement? To answer, drag the appropriate cmdlets to the correct
requirements. Each cmdlet may be used once, more than once, or not at all. You may need to drag the split bar
between panes or scroll to view content.
Select and Place:

Your company recently deployed Exchange Server 2016.
Users use a variety of mobile devices to access their mailbox, including iPhones and iPads.
You need to configure security for the users who connect to the corporate network by using their mobile device.
The solution must meet the following requirements:
Users must be required to enter a complex password to unlock their device.
Only devices that run iOS 8 or later must be allowed to connect to the Exchange Server organization.
Users who fail to download the security settings defined by the organization must be prevented fromaccessing their mailbox.
Which cmdlet should you use for each requirement? To answer, drag the appropriate cmdlets to the correct
requirements. Each cmdlet may be used once, more than once, or not at all. You may need to drag the split bar
between panes or scroll to view content.
Select and Place:

Answer:

Explanation:
https://technet.microsoft.com/en-us/library/dd876923(v=exchg.160).aspx



Leave a Reply 7

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


stillme

notme

notme

Just to confirm…for “users who fail to download the security settings defined by the organization must be prevented from accessing their mailbox”

Set-MobileDeviceMailboxPolicy -AllowNonProvisionableDevices

notme

notme

cmdlet above requires a Boolean value, of course…

tmkreddy55

tmkreddy55

Users must be required to enter a complex password to unlock their device.
— Example Set-MobileDeviceMailboxPolicy -PasswordEnabled $True -MinPasswordComplexCharacters 4 -MinPasswordLength 8

Users who fail to download the security settings defined by the organization must be prevented from accessing their mailbox.

— Example Set-MobileDeviceMailboxPolicy -AllowNonProvisionableDevices <$true | $false

Only devices that run iOS 8 or later must be allowed to connect to the Exchange Server organization.
— Example New-ActiveSyncDeviceAccessRule -Characteristic DeviceOS -QueryString "iOS 8.* ****" -AccessLevel Block

tmkreddy55

tmkreddy55

—Set-MobileDeviceMailboxPolicy -AllowSimplePassword $false

Malik

Malik

I got this question.