-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Several new features #23
base: main
Are you sure you want to change the base?
Conversation
Hi @obuolinis, I really like your work. I've checked your removal of the MSGraphRequest dependency. I think it does not make that much sense because the IntuneWin32App module is based on the MSGraphRequest module. But on this point I had a great idea to improve the performance of the Test-Applist.ps1 script. For every app update check the whole applist is received. I have changed this point and on my environment I can process the checks from 3:30 minutes to 1:12 minutes. I will push this with a pull requests. Keep on working and sharing your improvments :-) |
Based - could be, depends on - no. And I insist that App Factory doesn't need MSGraphRequest as a dependency anymore, since IntuneWin32App itself has everything nowadays :) The latter uses Private Yes, there's a slight difference though :) Get-IntuneWin32App does one Graph call to get all Win32 apps and then an additional call for each app found (not really sure why, I didn't notice much difference except for the largeIcon and roleScopeTagIds properties, so it can be optimized for sure). If you're concerned about the total run time, then yeah, it adds up a bit. But if your App Factory solution is automated and runs fully autonomously, then why would you be? |
Would love to contribute to this awesome project with several new features that I developed for my company needs:
Got rid of MSGraphRequest module dependency. The only place where it's used is to query Win32 apps here, where it can be substituted with IntuneWin32App's
Get-IntuneWin32App
which does exactly the same:IntuneAppFactory/Scripts/Test-AppList.ps1
Line 370 in 632e043
Certificate authentication to MS Graph, since
Connect-MSIntuneGraph
does support it.Full PSADT Deploy-Application.ps1 script creation automation. No need to pre-create it - just add respective command lines to App.json.
@NickolajA your PSADT framework version is begging to be updated, I wasn't even able to add support for Repair cmd lines.
Copying of PSADT SupportFiles folder from app source into the package.
Add into the Intune app Notes for each new app: "Created by IntuneAppFactory on ###DATETIME###"
Custom app icon file name (and file extension). Static name of Icon.png just wasn't good enough for me. Ideally file extension validation needs to be added as well.
Custom setup file name. The latest improvement of making the setup file name dynamic didn't go well with me - I like the executable name to always be the same, therefore I reintroduced this possibility.
I have also adapted Intune App Factory to run on Github, but it's a bit complicated to share since I just changed all Azure Devops references in the code to Github Actions. If you wanted to support both at the same time, then some kind of different approach would have to be applied. I'll probably just share my version of Github workflow separately.