Listen to this Post
IntuneGet is a new tool designed to simplify the deployment and management of Windows applications in Microsoft Intune. This open-source solution aims to provide a seamless experience similar to IntuneBrew, allowing IT admins to upload and update Windows Apps efficiently. The private preview is set to launch in April/May, with a limited number of registrations available.
You Should Know:
To get started with IntuneGet, you can join the waitlist at IntuneGet.com. Here are some practical steps and commands to help you prepare for using IntuneGet:
1. Join the Waitlist:
- Visit IntuneGet.com and sign up for the waitlist to secure your spot for the private preview.
2. Prepare Your Intune Environment:
- Ensure your Intune environment is properly configured. Use the following PowerShell command to check your Intune tenant status:
Get-MsolCompanyInformation | Select-Object DisplayName, TenantId, InitialDomain
3. Upload and Update Windows Apps:
- Once IntuneGet is available, you can use it to upload and update Windows Apps. Here’s a sample PowerShell script to upload an app to Intune:
$appPath = "C:\Path\To\YourApp.msi" $appName = "YourAppName" $appPublisher = "YourPublisher" $appDescription = "YourAppDescription"</li> </ul> Add-IntuneWin32App -FilePath $appPath -DisplayName $appName -Publisher $appPublisher -Description $appDescription
4. Automate App Deployment:
- Automate the deployment process using Intune’s Graph API. Here’s a sample command to create an app deployment using the Graph API:
$appId = "YourAppId" $groupId = "YourGroupId"</li> </ul> Invoke-RestMethod -Method POST -Uri "https://graph.microsoft.com/v1.0/deviceAppManagement/mobileApps/$appId/assign" -Headers @{Authorization = "Bearer $token"} -Body (ConvertTo-Json @{ mobileAppAssignments = @( @{ "@odata.type" = "#microsoft.graph.mobileAppAssignment" intent = "required" target = @{ "@odata.type" = "#microsoft.graph.groupAssignmentTarget" groupId = $groupId } } ) })5. Monitor App Deployment:
- Use the following PowerShell command to monitor the deployment status of your apps:
Get-IntuneManagedAppStatus -AppId "YourAppId"
What Undercode Say:
IntuneGet promises to be a valuable tool for IT admins looking to streamline their Windows app deployment process in Intune. By leveraging open-source solutions and automation, you can significantly reduce the complexity and time required to manage applications. Prepare your environment, join the waitlist, and get ready to experience a more efficient way to handle app deployments with IntuneGet. For more information, visit IntuneGet.com.
References:
Reported By: Ugurkocde Intuneget – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅Join Our Cyber World:
- Use the following PowerShell command to monitor the deployment status of your apps:
- Automate the deployment process using Intune’s Graph API. Here’s a sample command to create an app deployment using the Graph API:



