Forum Discussion
Andrew Colombino
Jan 24, 2020Brass Contributor
How to prevent Intune deployment of Windows LOB apps from rebooting computers during business hours
I have several .msi apps I'm deploying through Intune as Windows LOB apps. When these apps have updates, I upload the new .msi files to the 'app package files' area of app properties. The problem...
- Jan 24, 2020You have two real options:
- Use a /norestart switch for the MSI file
- Use win32 app and configure the return codes
I prefer the latter as Win32 are the real way to go
Andrew Colombino
Jan 24, 2020Brass Contributor
Moe_Kinani No need to apologize. Thanks for helping figure this out.
The docs say not to use msiexec command arguments, and to use a Win32 app instead for that. I might need to give that a try.
Thijs Lecomte
Jan 24, 2020Bronze Contributor
You have two real options:
- Use a /norestart switch for the MSI file
- Use win32 app and configure the return codes
I prefer the latter as Win32 are the real way to go
- Use a /norestart switch for the MSI file
- Use win32 app and configure the return codes
I prefer the latter as Win32 are the real way to go
- Thijs LecomteJan 24, 2020Bronze Contributor
- Andrew ColombinoJan 24, 2020Brass Contributor
Thijs Lecomte Thanks, it sounds like Win32 apps are the way to go.