Skip to content

IntuneWifiConfigurationPolicyAndroidOpenSourceProject

Parameters

Parameter Attribute DataType Description Allowed Values
Id Write String Id of the Intune policy.
DisplayName Key String Display name of the Intune policy.
Description Write String Description of the Intune policy.
RoleScopeTagIds Write String[] List of Scope Tags for this Entity instance.
ConnectAutomatically Write Boolean Connect automatically to the network.
ConnectWhenNetworkNameIsHidden Write Boolean Define if the network should be connected if hidden.
NetworkName Write String Define the network name.
PreSharedKey Write String Define the pre-shared key.
PreSharedKeyIsSet Write Boolean Define if the pre-shared key is set.
ProxyAutomaticConfigurationUrl Write String Specify the proxy server configuration script URL.
ProxyExclusionList Write String[] List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as *.example.com.
ProxyManualAddress Write String Specify the proxy server IP address. Both IPv4 and IPv6 addresses are supported. For example: 192.168.1.1.
ProxyManualPort Write SInt32 Specify the proxy server port.
ProxySetting Write String Define the proxy setting. automatic, manual, none
Ssid Write String Define the SSID.
WiFiSecurityType Write String Define the Wifi security type. open, wep, wpaPersonal, wpaEnterprise
Assignments Write MSFT_DeviceManagementConfigurationPolicyAssignments[] Represents the assignment to the Intune policy.
Ensure Write String Present ensures the policy exists, absent ensures it is removed. Present, Absent
Credential Write PSCredential Credentials of the Intune Admin
ApplicationId Write String Id of the Azure Active Directory application to authenticate with.
TenantId Write String Id of the Azure Active Directory tenant used for authentication.
ApplicationSecret Write PSCredential Secret of the Azure Active Directory tenant used for authentication.
CertificateThumbprint Write String Thumbprint of the Azure Active Directory application's authentication certificate to use for authentication.
CertificatePassword Write PSCredential Username can be made up to anything but password will be used for CertificatePassword
CertificatePath Write String Path to certificate used in service principal usually a PFX file.
ManagedIdentity Write Boolean Managed ID being used for authentication.
AccessTokens Write String[] Access token used for authentication.

Embedded Instances

MSFT_DeviceManagementConfigurationPolicyAssignments

Parameters

Parameter Attribute DataType Description Allowed Values
dataType Required String The type of the target assignment. #microsoft.graph.cloudPcManagementGroupAssignmentTarget, #microsoft.graph.groupAssignmentTarget, #microsoft.graph.allLicensedUsersAssignmentTarget, #microsoft.graph.allDevicesAssignmentTarget, #microsoft.graph.exclusionGroupAssignmentTarget, #microsoft.graph.configurationManagerCollectionAssignmentTarget
deviceAndAppManagementAssignmentFilterType Write String The type of filter of the target assignment i.e. Exclude or Include. Possible values are:none, include, exclude. none, include, exclude
deviceAndAppManagementAssignmentFilterId Write String The Id of the filter for the target assignment.
deviceAndAppManagementAssignmentFilterDisplayName Write String The display name of the filter for the target assignment.
groupId Write String The group Id that is the target of the assignment.
groupDisplayName Write String The group Display Name that is the target of the assignment.
collectionId Write String The collection Id that is the target of the assignment.(ConfigMgr)

Description

This resource configures an Intune Wifi Configuration Policy for Android Open Source Project, Basic Wi-Fi type.

Permissions

Graph

To authenticate with the Graph API, this resource requires the following permissions:

Delegated permissions

  • Read
  • GroupMember.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementRBAC.Read.All

  • Update

  • GroupMember.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.Read.All

Application permissions

  • Read
  • GroupMember.Read.All, DeviceManagementConfiguration.Read.All, DeviceManagementRBAC.Read.All

  • Update

  • GroupMember.Read.All, DeviceManagementConfiguration.ReadWrite.All, DeviceManagementRBAC.Read.All

Examples

Example 1

This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline.

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String]
        $ApplicationId,

        [Parameter()]
        [System.String]
        $TenantId,

        [Parameter()]
        [System.String]
        $CertificateThumbprint
    )

    Import-DscResource -ModuleName Microsoft365DSC

    Node localhost
    {
        IntuneWifiConfigurationPolicyAndroidOpenSourceProject 'IntuneWifiConfigurationPolicyAndroidOpenSourceProject-Example'
        {
            DisplayName                    = 'wifi aosp'
            Description                    = 'Wi-Fi for shared warehouse scanning devices'
            Assignments                    = @(
                MSFT_DeviceManagementConfigurationPolicyAssignments{
                    deviceAndAppManagementAssignmentFilterType = 'none'
                    dataType                                   = '#microsoft.graph.allDevicesAssignmentTarget'
                }
                MSFT_DeviceManagementConfigurationPolicyAssignments{
                    dataType         = '#microsoft.graph.exclusionGroupAssignmentTarget'
                    groupDisplayName = 'Warehouse Kiosk Tablets'
                }
            )
            ConnectAutomatically           = $false
            ConnectWhenNetworkNameIsHidden = $true
            NetworkName                    = 'Warehouse Scanner Wi-Fi'
            PreSharedKey                   = '<wifi-pre-shared-key>'
            PreSharedKeyIsSet              = $true
            ProxyExclusionList             = @('intranet.contoso.com', '*.contoso.local')
            ProxyManualAddress             = 'proxy.contoso.com'
            ProxyManualPort                = 8080
            ProxySetting                   = 'manual'
            RoleScopeTagIds                = @('0')
            Ssid                           = 'Contoso-Scanners'
            WiFiSecurityType               = 'wpaPersonal'
            Ensure                         = 'Present'
            ApplicationId                  = $ApplicationId;
            TenantId                       = $TenantId;
            CertificateThumbprint          = $CertificateThumbprint;
        }
    }
}

Example 2

This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline.

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String]
        $ApplicationId,

        [Parameter()]
        [System.String]
        $TenantId,

        [Parameter()]
        [System.String]
        $CertificateThumbprint
    )

    Import-DscResource -ModuleName Microsoft365DSC

    Node localhost
    {
        IntuneWifiConfigurationPolicyAndroidOpenSourceProject 'IntuneWifiConfigurationPolicyAndroidOpenSourceProject-Example'
        {
            DisplayName                    = 'wifi aosp'
            Description                    = 'Wi-Fi for shared warehouse scanning devices'
            Assignments                    = @(
                MSFT_DeviceManagementConfigurationPolicyAssignments{
                    deviceAndAppManagementAssignmentFilterType = 'none'
                    dataType                                   = '#microsoft.graph.allDevicesAssignmentTarget'
                }
                MSFT_DeviceManagementConfigurationPolicyAssignments{
                    dataType         = '#microsoft.graph.exclusionGroupAssignmentTarget'
                    groupDisplayName = 'Warehouse Kiosk Tablets'
                }
            )
            ConnectAutomatically           = $false
            ConnectWhenNetworkNameIsHidden = $true
            NetworkName                    = 'Warehouse Scanner Wi-Fi - Building B' # Updated Property
            PreSharedKey                   = '<wifi-pre-shared-key>'
            PreSharedKeyIsSet              = $true
            ProxyExclusionList             = @('intranet.contoso.com', '*.contoso.local')
            ProxyManualAddress             = 'proxy.contoso.com'
            ProxyManualPort                = 8080
            ProxySetting                   = 'manual'
            RoleScopeTagIds                = @('0')
            Ssid                           = 'Contoso-Scanners'
            WiFiSecurityType               = 'wpaPersonal'
            Ensure                         = 'Present'
            ApplicationId                  = $ApplicationId;
            TenantId                       = $TenantId;
            CertificateThumbprint          = $CertificateThumbprint;
        }
    }
}

Example 3

This example is used to test new resources and showcase the usage of new resources being worked on. It is not meant to use as a production baseline.

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String]
        $ApplicationId,

        [Parameter()]
        [System.String]
        $TenantId,

        [Parameter()]
        [System.String]
        $CertificateThumbprint
    )

    Import-DscResource -ModuleName Microsoft365DSC

    Node localhost
    {
        IntuneWifiConfigurationPolicyAndroidOpenSourceProject 'IntuneWifiConfigurationPolicyAndroidOpenSourceProject-Example'
        {
            DisplayName           = 'wifi aosp'
            Ensure                = 'Absent'
            ApplicationId         = $ApplicationId;
            TenantId              = $TenantId;
            CertificateThumbprint = $CertificateThumbprint;
        }
    }
}