Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for issue - #5587 #5588

Open
wants to merge 4 commits into
base: Dev
Choose a base branch
from
Open
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 @@ -8,6 +8,10 @@
* EXOTransportRule
* Fixes issue extracting arrays in Get-TargetResource.
* FIXES [#5575](https://github.com/microsoft/Microsoft365DSC/issues/5575)
* IntuneAppConfigurationDevicePolicy
* Removed due to issue [#5587]. Android configuration already managed by IntuneAndroidManagedStoreAppConfiguration
* IntuneMobileAppConfigurationPolicyIOS
* Initial release, fixes issue [#5587].
* TeamsMeetingPolicy
* Adds support for additional Copilot setting value.
* FIXES [#5573](https://github.com/microsoft/Microsoft365DSC/issues/5573)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ function Get-TargetResource
$AccessTokens
)

Write-Verbose -Message "This module has been deprecated, please use MSFT_IntuneMobileAppConfigurationPolicyIOS for iOS policy and MSFT_IntuneAndroidManagedStoreAppConfiguration for Android."
dannyKBjj marked this conversation as resolved.
Show resolved Hide resolved
return @{}

try
{
$ConnectionMode = New-M365DSCConnection -Workload 'MicrosoftGraph' `
Expand Down Expand Up @@ -251,6 +254,7 @@ function Get-TargetResource

return $nullResult
}

}

function Set-TargetResource
Expand Down Expand Up @@ -347,7 +351,8 @@ function Set-TargetResource
[System.String[]]
$AccessTokens
)

Write-Verbose -Message "This module has been deprecated, please use MSFT_IntuneMobileAppConfigurationPolicyIOS for iOS policy and MSFT_IntuneAndroidManagedStoreAppConfiguration for Android."
return @{}
#Ensure the proper dependencies are installed in the current environment.
Confirm-M365DSCDependencies

Expand Down Expand Up @@ -475,6 +480,7 @@ function Set-TargetResource
Remove-MgBetaDeviceAppManagementMobileAppConfiguration -ManagedDeviceMobileAppConfigurationId $currentInstance.Id
#endregion
}

}

function Test-TargetResource
Expand Down Expand Up @@ -573,7 +579,8 @@ function Test-TargetResource
[System.String[]]
$AccessTokens
)

Write-Verbose -Message "This module has been deprecated, please use MSFT_IntuneMobileAppConfigurationPolicyIOS for iOS policy and MSFT_IntuneAndroidManagedStoreAppConfiguration for Android."
return @{}
#Ensure the proper dependencies are installed in the current environment.
Confirm-M365DSCDependencies

Expand Down Expand Up @@ -635,6 +642,7 @@ function Test-TargetResource
Write-Verbose -Message "Test-TargetResource returned $testResult"

return $testResult

}

function Export-TargetResource
Expand Down Expand Up @@ -675,7 +683,8 @@ function Export-TargetResource
[System.String[]]
$AccessTokens
)

Write-Verbose -Message "This module has been deprecated, please use MSFT_IntuneMobileAppConfigurationPolicyIOS for iOS policy and MSFT_IntuneAndroidManagedStoreAppConfiguration for Android."
return @{}
$ConnectionMode = New-M365DSCConnection -Workload 'MicrosoftGraph' `
-InboundParameters $PSBoundParameters

Expand Down Expand Up @@ -817,6 +826,7 @@ function Export-TargetResource

return ''
}

}

Export-ModuleMember -Function *-TargetResource
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

## Description

This module has been deprecated, please use MSFT_IntuneMobileAppConfigurationPolicyIOS for iOS policy and MSFT_IntuneAndroidManagedStoreAppConfiguration for Android.

Intune App Configuration Device Policy.

Please note: A policy can only contain settings of its platform type and the platform type cannot be changed after creation.
Loading