Forum Discussion
liam--
Jul 20, 2023Copper Contributor
Installing Win32 Apps
Hi Community, Can you confirm how I would install a Win32 app for a .exe file. I'm struggling with one part in particular which is the install and uninstall commands - which I can't find many...
- Jul 26, 2023I searched for silent install and uninstall command lines for that software but couldn't find any. I suggest contacting support and asking them how to silently install and uninstall the software to deploy it using Intune Win32. Alternatively, a packager could wrap this into an MSI, which you could add to Intune.
There are a lot of programs out there which could have an install.cmd containing things like (This is a Dutch Adobe Acrobat installer):
Install.cmd
AcroRdrDC1900820071_nl_NL.exe /sAll /rs /rps /msi /norestart /quiet EULA_ACCEPT=YES
Uninstall.cmd
MsiExec.exe /X{AC76BA86-7AD7-1043-7B44-AC0F074E4100} /quiet
It just all depends... I would recommend https://silentinstallhq.com/, which posts articles like https://silentinstallhq.com/notepad-8-5-4-silent-install-how-to-guide/ containing details about install and uninstall parameters.
Jul 21, 2023
- Create a directory
- Place all the installation files in that directory
- Create a install.cmd and a uninstall.cmd and add the commandline for installation and uninstallation in that
- Download intunewinapputil.exe
- Start intunewinapputil.exe and specify the path to the directory
- Specify install.cmd as the installation command
- Specify a folder for storing the .intunwinapp package
- Go to https://intune.microsoft.com/#view/Microsoft_Intune_DeviceSettings/AppsWindowsMenu/~/windowsApps
- Select Add, Windows App (Win32) and select
- Walk through the wizard, specify the install.cmd and uninstall.cmd and System or User (Depending on the amount of rights needed) and all required fields
- Use Manually configure detection rules) as rules format and use File and specify the installation folder in which the program is installed and the executable with File or folder exists detection method
- Assign group for installation and save
- Place all the installation files in that directory
- Create a install.cmd and a uninstall.cmd and add the commandline for installation and uninstallation in that
- Download intunewinapputil.exe
- Start intunewinapputil.exe and specify the path to the directory
- Specify install.cmd as the installation command
- Specify a folder for storing the .intunwinapp package
- Go to https://intune.microsoft.com/#view/Microsoft_Intune_DeviceSettings/AppsWindowsMenu/~/windowsApps
- Select Add, Windows App (Win32) and select
- Walk through the wizard, specify the install.cmd and uninstall.cmd and System or User (Depending on the amount of rights needed) and all required fields
- Use Manually configure detection rules) as rules format and use File and specify the installation folder in which the program is installed and the executable with File or folder exists detection method
- Assign group for installation and save