- Table of Contents
- Intune-PowerShell-SDK
- Getting started
- Example usage
- Notable features
- Known issues and workarounds
This repository contains the source code for the PowerShell module which provides support for the Intune API through Microsoft Graph.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
- Install the Microsoft.Graph.Intune module from: https://www.powershellgallery.com/packages/Microsoft.Graph.Intune
Install-Module -Name Microsoft.Graph.Intune- Download the module from the Releases tab in the GitHub repository.
- The "drop\outputs\build\Release\net471" folder in the zip file contains the module.
- If you are using Windows, extract the "net471" folder. You must have .NET 4.7.1 or higher installed.
- The module manifest is the "Microsoft.Graph.Intune.psd1" file inside this folder. This is the file you would refer to when importing the module.
- Import the module:
Import-Module $sdkDir/Microsoft.Graph.Intune.psd1An admin user must provide consent for this app to be used in their organization. This can be done with the following command:
Connect-MSGraph -AdminConsentTo authenticate with Microsoft Graph (this is not required when using CloudShell):
Connect-MSGraphTo authenticate with Microsoft Graph using [System.Management.Automation.PSCredential]
$adminUPN=Read-Host -Prompt "Enter UPN"
$adminPwd=Read-Host -AsSecureString -Prompt "Enter password for $adminUPN"
$creds = New-Object System.Management.Automation.PSCredential ($AdminUPN, $adminPwd)
$connection = Connect-MSGraph -PSCredential $credsGet the full list of available cmdlets:
Get-Command -Module Microsoft.Graph.IntuneGet documentation on a particular cmdlet:
Get-Help <cmdlet name>Use a UI to see the parameter sets more easily:
Show-Command <cmdlet name>Get all Intune applications:
Get-IntuneMobileAppGet all Intune device configurations:
Get-IntuneDeviceConfigurationPolicyGet all Intune managed devices:
Get-IntuneManagedDeviceGet a filtered list of applications and select only the "displayName" and "publisher" properties:
# The filter string follows the same rules as specified in the OData v4.0 specification.
# Filter string construction rules: http://docs.oasis-open.org/odata/odata/v4.0/errata03/os/complete/abnf/odata-abnf-construction-rules.txt
Get-IntuneMobileApp -Select displayName, publisher -Filter "isof('microsoft.graph.webApp')"Create a web application:
$bingWebApp = New-IntuneMobileApp -webApp -displayName 'Bing' -publisher 'Microsoft Corporation' -AppUrl 'https://www.bing.com'Update the web application that we created in the 'Creating objects' section:
$bingWebApp | Update-IntuneMobileApp -webApp -displayName 'Bing Search'Delete the web application that we created in the 'Creating objects' section:
$bingWebApp | Remove-IntuneMobileAppLock a managed device:
# Get a device to lock
$allDevices = Get-IntuneManagedDevice
$deviceToLock = $allDevices[0]
# Lock this device
$deviceToLock | Invoke-IntuneManagedDeviceRemoteLock- Standard PowerShell objects are used for input/output, meaning that all built-in PowerShell features/utilities/tricks work, including:
- Piping of objects between cmdlets
- Formatting of output:
Format-Table,Out-GridView,ConvertTo-Csv,ConvertTo-Json, etc. - Getting help on usage:
Get-Help - Visualizing input parameters:
Show-Command - Using the 'tab' key to auto-complete or cycle through available options
- Documentation which is available in the schema is injected into the cmdlet documentation
- Auto-complete and validation on Enum parameters as well as some query parmeters (i.e. $select, $expand and $orderBy)
- Utility cmdlets for some common tasks
- Getting the authentication token:
Connect-MSGraph - Getting service metadata:
Get-MSGraphMetadata - Paging:
Get-MSGraphNextPageandGet-MSGraphAllPages - Changing environment settings, e.g. Graph schema version:
Update-MSGraphEnvironment -Schema beta -AppId 00000000-0000-0000-0000-000000000000 - Make arbitrary Graph calls using the
Invoke-MSGraphcmdlet
- Getting the authentication token:
- The PowerShell module can be generated for any valid Graph schema
- Importing the
MSOnlinecmdlets before importing thisIntunemodule will cause errors. Please use theAzureADmodule instead, as theMSOnlinemodule is deprecated.- If you absolutely must use the
MSOnlinemodule, it should be imported AFTER theIntunemodule. Note, however, that this is not officially supported.
- If you absolutely must use the
- If downloaded from Github, the file "Microsoft.Intune.PowerShellGraphSDK.dll" may be blocked when a release is first downloaded. This will stop the assembly from correctly loading (and you will see an error message if you try to import the module).
Dir -Recurse $sdkDir | Unblock-File- The SDK is built out of Microsoft Graph v1.0 release, some functionality available in the Intune Administration UI is built using the Microsoft Graph beta release.
- Workaround is to use Invoke-RestMethod for such functionality. For more details see: microsoft#14