Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
* [BREAKING CHANGE] Added `IsSingleInstance` parameter.
* AADTenantAppManagementPolicy
* [BREAKING CHANGE] Added `IsSingleInstance` and removed `Ensure` parameter.
* EXOActiveSyncMailboxPolicy
* Changed cmdlets from `*-ActiveSyncMailboxPolicy` to `*-MobileDeviceMailboxPolicy`.
* [BREAKING CHANGE] Updated property names to match newly returned values and parameters.
Added new properties `AllowGooglePushNotifications` and `AllowMicrosoftPushNotifications`.
* EXODkimSigningConfig
* Fixed an issue to create new DkimSigningConfig
FIXES [#6982](https://github.com/microsoft/Microsoft365DSC/issues/6982)
Expand Down
20 changes: 11 additions & 9 deletions Examples/Resources/EXOActiveSyncMailboxPolicy/1-Create.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,42 +31,44 @@ Configuration Example
AllowConsumerEmail = $True;
AllowDesktopSync = $True;
AllowExternalDeviceManagement = $False;
AllowGooglePushNotifications = $True;
AllowHTMLEmail = $True;
AllowInternetSharing = $True;
AllowIrDA = $True;
AllowMicrosoftPushNotifications = $True;
AllowMobileOTAUpdate = $True;
AllowNonProvisionableDevices = $True;
AllowPOPIMAPEmail = $True;
AllowRemoteDesktop = $True;
AllowSimpleDevicePassword = $True;
AllowSimplePassword = $True;
AllowSMIMEEncryptionAlgorithmNegotiation = "AllowAnyAlgorithmNegotiation";
AllowSMIMESoftCerts = $True;
AllowStorageCard = $True;
AllowTextMessaging = $True;
AllowUnsignedApplications = $True;
AllowUnsignedInstallationPackages = $True;
AllowWiFi = $True;
AlphanumericDevicePasswordRequired = $False;
AlphanumericPasswordRequired = $False;
ApprovedApplicationList = @();
AttachmentsEnabled = $True;
DeviceEncryptionEnabled = $False;
DevicePasswordEnabled = $False;
DevicePasswordExpiration = "Unlimited";
DevicePasswordHistory = 0;
PasswordEnabled = $False;
PasswordExpiration = "Unlimited";
PasswordHistory = 0;
DevicePolicyRefreshInterval = "Unlimited";
Identity = "Test";
IrmEnabled = $True;
IsDefault = $True;
IsDefaultPolicy = $True;
MaxAttachmentSize = "Unlimited";
MaxCalendarAgeFilter = "All";
MaxDevicePasswordFailedAttempts = "Unlimited";
MaxPasswordFailedAttempts = "Unlimited";
MaxEmailAgeFilter = "All";
MaxEmailBodyTruncationSize = "Unlimited";
MaxEmailHTMLBodyTruncationSize = "Unlimited";
MaxInactivityTimeDeviceLock = "Unlimited";
MinDevicePasswordComplexCharacters = 1;
MinDevicePasswordLength = 1;
MaxInactivityTimeLock = "Unlimited";
MinPasswordComplexCharacters = 1;
MinPasswordLength = 1;
Name = "Test";
PasswordRecoveryEnabled = $False;
RequireDeviceEncryption = $False;
Expand Down
22 changes: 12 additions & 10 deletions Examples/Resources/EXOActiveSyncMailboxPolicy/2-Update.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,46 +27,48 @@ Configuration Example
AllowApplePushNotifications = $True;
AllowBluetooth = "Allow";
AllowBrowser = $True;
AllowCamera = $False; #drift
AllowCamera = $False; # Drift
AllowConsumerEmail = $True;
AllowDesktopSync = $True;
AllowExternalDeviceManagement = $False;
AllowGooglePushNotifications = $True;
AllowHTMLEmail = $True;
AllowInternetSharing = $True;
AllowIrDA = $True;
AllowMicrosoftPushNotifications = $True;
AllowMobileOTAUpdate = $True;
AllowNonProvisionableDevices = $True;
AllowPOPIMAPEmail = $True;
AllowRemoteDesktop = $True;
AllowSimpleDevicePassword = $True;
AllowSimplePassword = $True;
AllowSMIMEEncryptionAlgorithmNegotiation = "AllowAnyAlgorithmNegotiation";
AllowSMIMESoftCerts = $True;
AllowStorageCard = $True;
AllowTextMessaging = $True;
AllowUnsignedApplications = $True;
AllowUnsignedInstallationPackages = $True;
AllowWiFi = $True;
AlphanumericDevicePasswordRequired = $False;
AlphanumericPasswordRequired = $False;
ApprovedApplicationList = @();
AttachmentsEnabled = $True;
DeviceEncryptionEnabled = $False;
DevicePasswordEnabled = $False;
DevicePasswordExpiration = "Unlimited";
DevicePasswordHistory = 0;
PasswordEnabled = $False;
PasswordExpiration = "Unlimited";
PasswordHistory = 0;
DevicePolicyRefreshInterval = "Unlimited";
Identity = "Test";
IrmEnabled = $True;
IsDefault = $True;
IsDefaultPolicy = $True;
MaxAttachmentSize = "Unlimited";
MaxCalendarAgeFilter = "All";
MaxDevicePasswordFailedAttempts = "Unlimited";
MaxPasswordFailedAttempts = "Unlimited";
MaxEmailAgeFilter = "All";
MaxEmailBodyTruncationSize = "Unlimited";
MaxEmailHTMLBodyTruncationSize = "Unlimited";
MaxInactivityTimeDeviceLock = "Unlimited";
MinDevicePasswordComplexCharacters = 1;
MinDevicePasswordLength = 1;
MaxInactivityTimeLock = "Unlimited";
MinPasswordComplexCharacters = 1;
MinPasswordLength = 1;
Name = "Test";
PasswordRecoveryEnabled = $False;
RequireDeviceEncryption = $False;
Expand Down
20 changes: 11 additions & 9 deletions Examples/Resources/EXOActiveSyncMailboxPolicy/3-Remove.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,42 +31,44 @@ Configuration Example
AllowConsumerEmail = $True;
AllowDesktopSync = $True;
AllowExternalDeviceManagement = $False;
AllowGooglePushNotifications = $True;
AllowHTMLEmail = $True;
AllowInternetSharing = $True;
AllowIrDA = $True;
AllowMicrosoftPushNotifications = $True;
AllowMobileOTAUpdate = $True;
AllowNonProvisionableDevices = $True;
AllowPOPIMAPEmail = $True;
AllowRemoteDesktop = $True;
AllowSimpleDevicePassword = $True;
AllowSimplePassword = $True;
AllowSMIMEEncryptionAlgorithmNegotiation = "AllowAnyAlgorithmNegotiation";
AllowSMIMESoftCerts = $True;
AllowStorageCard = $True;
AllowTextMessaging = $True;
AllowUnsignedApplications = $True;
AllowUnsignedInstallationPackages = $True;
AllowWiFi = $True;
AlphanumericDevicePasswordRequired = $False;
AlphanumericPasswordRequired = $False;
ApprovedApplicationList = @();
AttachmentsEnabled = $True;
DeviceEncryptionEnabled = $False;
DevicePasswordEnabled = $False;
DevicePasswordExpiration = "Unlimited";
DevicePasswordHistory = 0;
PasswordEnabled = $False;
PasswordExpiration = "Unlimited";
PasswordHistory = 0;
DevicePolicyRefreshInterval = "Unlimited";
Identity = "Test";
IrmEnabled = $True;
IsDefault = $True;
IsDefaultPolicy = $True;
MaxAttachmentSize = "Unlimited";
MaxCalendarAgeFilter = "All";
MaxDevicePasswordFailedAttempts = "Unlimited";
MaxPasswordFailedAttempts = "Unlimited";
MaxEmailAgeFilter = "All";
MaxEmailBodyTruncationSize = "Unlimited";
MaxEmailHTMLBodyTruncationSize = "Unlimited";
MaxInactivityTimeDeviceLock = "Unlimited";
MinDevicePasswordComplexCharacters = 1;
MinDevicePasswordLength = 1;
MaxInactivityTimeLock = "Unlimited";
MinPasswordComplexCharacters = 1;
MinPasswordLength = 1;
Name = "Test";
PasswordRecoveryEnabled = $False;
RequireDeviceEncryption = $False;
Expand Down
Loading
Loading