PEbrey Posted December 9, 2014 Posted December 9, 2014 Hello, I have installed the ActivInspire image to a server location so I can deploy it through SCCM. However, the image has lots of files and MSIs. My question is, when I deploy this, what exactly do I need to include in the deployment? We usually create .CMD files for the installs. Will it be as simple as just the four MSIs? ActivDriver.msi, ActivInspire.msi, CoreRes and HWRes? I notice that there's a ".inspire_licese.xml" in there etc. Will the MSIs use these, or will I have to some additional commands to execute these files? Alternatively maybe I just need to deploy the main MSI and it will, itself, call the other MSIs? Thanks in advance. Paul
Asgard Posted December 9, 2014 Posted December 9, 2014 We deploy it via Group Policy - I can send you some details tomorrow if that helps ? I think there is an order , after creating an Install image
PEbrey Posted December 9, 2014 Author Posted December 9, 2014 We deploy it via Group Policy - I can send you some details tomorrow if that helps ? I think there is an order , after creating an Install image Yeah if you could help that'd be great. I won't be doing it via group policy though
Ashm Posted December 9, 2014 Posted December 9, 2014 I created a package in the end in SCCM 2012 with a batch file containing all the MSIEXEC commands below so all the different components are installed. msiexec /i "Driver64\ActivDriver x64.msi" /q ALLUSERS=1 addlocal=all msiexec /i "ActivInspirev2\ActivInspire.msi" transforms="Inspire\ActivInspire_v1.mst" /q ALLUSERS=1 msiexec /i "CoreResv1\ActivInspireCoreRes.msi" /q ALLUSERS=1 msiexec /i "ActivInspire Help v2\ActivInspireHelp.msi" /q ALLUSERS=1 msiexec /i "HWRResv1\ActivInspireHWRRes.msi" /q ALLUSERS=1 1
PEbrey Posted December 12, 2014 Author Posted December 12, 2014 I created a package in the end in SCCM 2012 with a batch file containing all the MSIEXEC commands below so all the different components are installed. msiexec /i "Driver64\ActivDriver x64.msi" /q ALLUSERS=1 addlocal=all msiexec /i "ActivInspirev2\ActivInspire.msi" transforms="Inspire\ActivInspire_v1.mst" /q ALLUSERS=1 msiexec /i "CoreResv1\ActivInspireCoreRes.msi" /q ALLUSERS=1 msiexec /i "ActivInspire Help v2\ActivInspireHelp.msi" /q ALLUSERS=1 msiexec /i "HWRResv1\ActivInspireHWRRes.msi" /q ALLUSERS=1 Ah that's great thank you. So do I need all these other files it dumps in the folder? Surely everything that's required are in the MSIs
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now