I have little skill in packaging apps for System Center 2012 Configuration Manager but have successfully packaged a few: Adobe Reader, MS Visio and Project, Lync, and Paint.NET.
Basically I downloaded the MSI, and created a custom MST via Orca.
If I use via commandline, they will work:
msiexec.exe /i "%~dp0snagit_v10.0.2.msi" TRANSFORMS="%~dp0setup.mst" /qn
msiexec.exe /i "snagit_v10.0.2.msi" TRANSFORMS="setup.mst" /qn
Also packaged in a .bat:
@echo off
msiexec.exe /i "%~dp0snagit_v10.0.2.msi" TRANSFORMS="%~dp0setup.mst" /qn
---
When I create the Application, it fails all the time.
The Installation program is:
msiexec /i "snagit_v10.0.2.msi" TRANSFORMS="setup.mst" /qn
msiexec.exe /i "%~dp0snagit_v10.0.2.msi" TRANSFORMS="%~dp0setup.mst" /qn
I've also tried to use "install.bat" with just running the command.
---
I am not sure why I can't get this to work especially because everytime I get the install done by cmd successfully, I can get it working in SCCM 2012.
I am not sure which log files I should be checking for this. I checked all the ones on the client machine modified at the time of the installation failure which didn't indicate anything I can figure out. Referenced GUID's or something but didn't look related.
---
Apologize if this is a novice question. Thanks.
Kyle