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.
liam--
Copper Contributor
Hi Harm,
It's this point that I am struggling with: Create a install.cmd and a uninstall.cmd and add the commandline for installation and uninstallation in that
If you could advise how I can do this to tailor it to the specific software that I have mentioned, that would be a big help!
Thanks,
Liam
It's this point that I am struggling with: Create a install.cmd and a uninstall.cmd and add the commandline for installation and uninstallation in that
If you could advise how I can do this to tailor it to the specific software that I have mentioned, that would be a big help!
Thanks,
Liam
Jul 26, 2023
I 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.
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.
- liam--Jul 28, 2023Copper ContributorThank you Harm! I've been looking at this stuff today and will continue to do so until I have found something. I will post in here if I do.