New Update for IntuneBrew: Simplifying macOS App Uploads to Intune

Listen to this Post

🚀 Ugur Koc, a Microsoft MVP and Cloud Architect, has introduced a groundbreaking update for IntuneBrew, making it easier than ever to upload macOS apps to Intune. The new feature, 1-Click Upload to Intune, eliminates the need for running PowerShell scripts locally. Simply press “Upload to Intune,” and the process is automated. This feature is currently available in a Private Preview, with 462 Intune Admins already onboard. If you’re interested, you can join the waitlist here.

You Should Know:

Here are some PowerShell commands and KQL (Kusto Query Language) snippets that can help you automate and manage Intune more effectively:

PowerShell Commands for Intune Automation:

1. Install Microsoft.Graph.Intune Module:

Install-Module -Name Microsoft.Graph.Intune -Force -Scope CurrentUser

2. Connect to Intune:

Connect-MgGraph -Scopes "DeviceManagementApps.ReadWrite.All, DeviceManagementConfiguration.ReadWrite.All"

3. Upload macOS App to Intune:

Add-IntuneMacOSLobApp -FilePath "path/to/your/app.pkg" -DisplayName "Your App Name" -Publisher "Publisher Name"

4. List All Intune Managed Devices:

Get-MgDeviceManagementManagedDevice -All

KQL for Intune Insights:

1. Query for Device Compliance Status:

IntuneDevices
| where ComplianceState == "Compliant"
| summarize Count = count() by DeviceName

2. Check App Installation Status:

IntuneAppInstallStatus
| where AppName == "Your App Name"
| summarize Count = count() by InstallState

3. Monitor Device Health:

IntuneDeviceHealth
| summarize AvgBatteryLife = avg(BatteryLife) by DeviceModel

What Undercode Say:

The new 1-Click Upload to Intune feature is a game-changer for IT admins managing macOS devices in enterprise environments. By automating the app upload process, it reduces manual effort and minimizes errors. To further enhance your Intune management, consider leveraging PowerShell for automation and KQL for deep insights into device and app performance. Here are a few additional commands to explore:

  • Windows Update Management:
    Get-WindowsUpdateLog
    
  • Linux System Monitoring:
    top -b -n 1 | grep "Cpu(s)"
    
  • Network Troubleshooting:
    ping -c 4 google.com
    

For more advanced Intune automation, check out the official Microsoft Graph API documentation.

By combining these tools and techniques, you can streamline your IT operations and ensure a seamless experience for end-users.

References:

Reported By: Ugurkocde Msintune – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

Join Our Cyber World:

Whatsapp
TelegramFeatured Image