With the introduction of the new Microsoft store you might want to remove the legacy store apps from your apps list in Intune.

IT Wiki
With the introduction of the new Microsoft store you might want to remove the legacy store apps from your apps list in Intune.

If you create an App Registration in Azure AD for a 3th party application you might want to limit the rights of this 3th party application.
For example you have a 3th party application which you want to access a specific mailbox to read mail from you would like to limit access to this specific mailbox only. To make sure that the application is not able to read the mailbox content of the CEO you need to implement an Application Access Policy.
Note: You need to have an Azure AD license to use Application Access policy’s.
If you are using a print server and you would like to deploy network printers to endpoints you can follow the steps below.
To run a PowerShell script as a Win32 perform the following actions:
Follow the steps below to deploy a local (network) printer with Intune. If you want to deploy a network printer and drivers follow the steps in this link.
Get list of MSI GUID of installed applications:
get-wmiobject Win32_Product | Format-Table IdentifyingNumber, Name, LocalPackage -AutoSize
Create group tags to auto populate groups with devices.
Use the upload-windowsautopilotdeviceinfo script with the -grouptag option to automatically set the group tag.
Or set it manually in the intune console
Continue reading
When I deploy applications into Intune I always deploy some usefully management applications which I can use in other application.
Some tools which I always deploy to a end device are:
Below the code used to connect to Office 365 with Powershell.
#Ask for O365 Credentials $Credentials = Get-Credential #Build session to O365 with specified credentials $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $Credentials -Authentication Basic -AllowRedirection Import-PSSession $Session
© 2025 Van Ooijen
Theme by Anders Noren — Up ↑