Kops Posted April 15, 2016 Report post Posted April 15, 2016 Hey everyone, I'm looking for some help on how I can install an application that requires multiple configuration steps. I'd like to: - Install a .MSI application - Run a Powershell script to create/edit some shortcuts created by the .MSI If the Application is removed, I'd like it to: - Run a Powershell script to remove and cleanup the shortcuts - Uninstall the .MSI I thought about using Dependencies, but I think that would be kind of backwards. I would have to create an Application for "Update shortcuts" and have the dependency as "install the MSI" first. From there, I'm not even sure how the uninstall would look. I could put this all into a Powershell script, and have the script call the .MSI installation, edit the shortcuts, etc. Then create another Powershell script to remove the shortcuts, and uninstall the .MSI.....but I thought, maybe SCCM has something built in for this that I'm not using? Appreciate the help Quote Share this post Link to post Share on other sites More sharing options...
YPCC Posted April 16, 2016 Report post Posted April 16, 2016 You are spot on with a powerscript. Create it as a application. Essentially you want to run multiple lines of code in a single command. Possible but a powershell script that installs the msi and edits shortcuts is the best option. Quote Share this post Link to post Share on other sites More sharing options...