DSCResources/cIntuneDeviceEnrollmentStatusPageWindows10/cIntuneDeviceEnrollmentStatusPageWindows10.schema.psm1
configuration cIntuneDeviceEnrollmentStatusPageWindows10 { param ( [Parameter()] [hashtable[]] $Items ) <# IntuneDeviceEnrollmentStatusPageWindows10 [String] #ResourceName { DisplayName = [string] [AccessTokens = [string[]]] [AllowDeviceResetOnInstallFailure = [bool]] [AllowDeviceUseOnInstallFailure = [bool]] [AllowLogCollectionOnInstallFailure = [bool]] [AllowNonBlockingAppInstallation = [bool]] [ApplicationId = [string]] [ApplicationSecret = [PSCredential]] [Assignments = [MSFT_DeviceManagementConfigurationPolicyAssignments[]]] [BlockDeviceSetupRetryByUser = [bool]] [CertificateThumbprint = [string]] [Credential = [PSCredential]] [CustomErrorMessage = [string]] [DependsOn = [string[]]] [Description = [string]] [DisableUserStatusTrackingAfterFirstUser = [bool]] [Ensure = [string]{ Absent | Present }] [Id = [string]] [InstallProgressTimeoutInMinutes = [UInt32]] [InstallQualityUpdates = [bool]] [ManagedIdentity = [bool]] [Priority = [UInt32]] [PsDscRunAsCredential = [PSCredential]] [SelectedMobileAppIds = [string[]]] [SelectedMobileAppNames = [string[]]] [ShowInstallationProgress = [bool]] [TenantId = [string]] [TrackInstallProgressForAutopilotOnly = [bool]] } #> Import-DscResource -ModuleName PSDesiredStateConfiguration Import-DscResource -ModuleName Microsoft365DSC $dscResourceName = 'IntuneDeviceEnrollmentStatusPageWindows10' $param = $PSBoundParameters $param.Remove("InstanceName") $dscParameterKeys = 'DisplayName' -split ', ' foreach ($item in $Items) { if (-not $item.ContainsKey('Ensure')) { $item.Ensure = 'Present' } $keyValues = foreach ($key in $dscParameterKeys) { $item.$key } $executionName = $keyValues -join '_' $executionName = $executionName -replace "[\s()\\:*-+/{}```"']", '_' (Get-DscSplattedResource -ResourceName $dscResourceName -ExecutionName $executionName -Properties $item -NoInvoke).Invoke($item) } } |