LiveLink 9.5 SCCM2012 Detection Rule issue
Hi All
I have now been busy with Ixos Livelink 9.5 now for days
i have to deploy the application in SCCM2012R2 through application management and not normal software distribution
I get a failure code of 0x87D00324(-2016410844). and I know it is because of a faulty detection rule :-(
ps non of the detection methods worked although the app does install
I used the MSI to build thedeployment application
From this it pulled in the detection for Windows Installer {96538711-469D-4B19-B2F3-F1E49F4A9E0E}
next I tried to use the registry - I ran procmon to see what changes was made to the system
I tried using the following registry keys -neither worked
SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\11783569D96491B42B3F1F4EF9A4E9E0\InstallProperties
SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{96538711-469D-4B19-B2F3-F1E49F4A9E0E}
i also tried using
C:\Program Files (x86)\IXOS\bin\alviewer.exe
has Anybody done this app before
please help me I woulld really appreciate it -
kind regards Mike
Answers (2)
Hi
i have solved this
with the install and uninstall I created to bat files that I am deploying through SCCM2012 Adppdeloy
i just added a ping command before and after the install and uninstall command - this causes a time delay before SCCM trys to do a "Detection Method" and the app installs as well as uninstall perfectly
Install Script
ping 192.0.0.2 -n 1 -w 10000 > nul
setup.exe /S /v/qn
ping 192.0.0.2 -n 1 -w 10000 > nul
xcopy "Livelink Archive Windows Viewer.lnk" c:\users\public\desktop /D /Y
exit
uninstall Script
ping 192.0.0.2 -n 1 -w 10000 > nul
"%programfiles(x86)%\sap\sapsetup\setup\NwSapSetup.exe" /product:\"ECL710\" /uninstall /silent
ping 192.0.0.2 -n 1 -w 10000 > nul
exit
hope this will help some one else
If this is the fix, this is a known issue with SCCM 2012. - vjaneczko 10 years ago