Forum Discussion
Infune as software deployment tool
- Oct 25, 2018
The dream was that software installation would happen through the Microsoft Store For Business. However, if you would like to deviate from the Microsoft dream, the Intune team has exposed a few alternatives:
- The Line-of-Business App mechanism could be used to push out single .msi, .appx, .appxbundle, .msix, and .msixbundle packages. https://docs.microsoft.com/en-us/intune/lob-apps-windows
- Announced at Ignite, there is now a re-packager, just for Intune. https://docs.microsoft.com/en-us/intune/apps-win32-app-management
- And then, there is the Powershell script support. I have seen scripts to download and install software from the Internet, much like Chocolatey. My problem with this, is that I have yet to see a way to monitor the scripts, beyond a mysterious pass/fail (presumably based on exit code). https://docs.microsoft.com/en-us/intune/intune-management-extension
Thanks for all your responses.
But how I can manage updates for the Win32 apps?
Regards
Stefan
- Eli ShlomoOct 25, 2018MVP
You can add the update parameter to the specific Win32 app or add another Win32 app package for update only, for example with Acrobat Reader you will use the following command with specific update parameter /Update “%~dp0AcroRdrDCUpd1801120063.msp” /qn /L*v
The rest of the process will be the same for Intune Win32 App packaging tool.
Eli.
- StefanKiOct 25, 2018Iron Contributor
Thanks.
How you manged it?
If Acrobat Reader installed then update and when it not installed than installed it.
Where Intune saves the file and how much storage I can use for it?
Regards
Stefan
- Eli ShlomoOct 27, 2018MVP
It depends on the app and PowerShell script itself, you can work with the same PowerShell script that checks if the acrobat is installed an update or if it's not installed and install.
In most cases, the files save locally but you can work with external location and do a remote install.
It's better to work with Win32 App to allow better deployment that allows creates a packaged container of the setup files along with command line installation and uninstall commands.
Eli.
- treestryderOct 25, 2018Iron Contributor
Could either push out the new versions.... or rely on the Auto-Update features built in to applications like Firefox and Chrome.
This is why Microsoft would prefer software was pushed through the Store for Business; much the way Google and Apple have done for years.