Application Deployment: Admin Studio Tuner

This is part of an ongoing series about AdminStudio and its capabilities. In this article we will explore Application Deployment. Visit WME Blog for more articles about the uses of AdminStudio.

AdminStudio is a product from Flexera Software that is a complete, end-to-end application management system. It allows administrators to create and modify installers to fit their environments. This article will focus on Tuner, which is used to create transform files for MSI’s. Tuner is full-featured in the paid-for edition of AdminStudio, as well as the “free” SCCM edition of AdminStudio.

Background and Limitations

One of the main features of an MSI install is its ability to be customized. An MSI, in its simplest form, is a database. This database can be modified with additional options through the use of parameters or transform files. When you create a transform file, it has a format of MST. To apply a transform file, you use the TRANSFORMS parameter for MSI. Your command will look like this:

msiexec /i install_me.msi TRANSFORMS=transform_me.mst

You can also add the passive install flag (“/qb”) or the silent install flag (“/qn”) at the end so that users do not have to click through an install.

Multiple transforms can also be applied to a single MSI install. To do this, simply type the MST files into the TRANSFORMS parameter separated by commas (example: TRANSFORMS=transform1.mst,transform2.mst). This may be necessary if you have an organizational install, then a special install for a particular department that modifies the installation even further.

Transform files can only be created for MSI installers. They cannot be used with any other type of installation.

Creating a Transform

To create a transform, launch Tuner and select “Create a new transform” in the left pane. In the right pane, point Tuner to your MSI file. Tuner automatically generates a name for your MST and puts it in the same folder as the MSI. You can modify this if you want in the “Windows Installer Transforms” box. When you are ready, click “Create”.

In the Tuner window, there are a 5 main sections that we are going to pay attention too. These are Files and Folders, Registry, Shortcuts, Setup Properties, and Dialogs. These five sections is where you will be doing most your work.

Files and Folders

In this section, we can add files or folders to our install. This is important if the application is licensed and needs a file to tell it so. We can add the file to the MST instead of having to use an extra script to copy the file down. To add a file or folder to an existing folder, simply select it in the “Destination computer’s folders” pane. The right pane will then populate with the folder’s current content.

To add a new folder under “Reader”, right click on Reader and select “Add”. This will add your new folder. To add a file to the Reader folder, browse to and select the file’s location in the “Source computer’s directory tree” pane”. This will display the folder’s contents in the “Source computer’s files” pane.

Now you simply drag the file from “Source computer’s files” to “Destination computer’s files”.

Now you have added a file to your MST. When you save the MST, it will create a .cab file with your new files/folders. You must ensure that this cab file is in the same directory as the MST when running your installation.

Registry

You can also create registry keys using your MST. You create registry keys for the same reasons as files. You can use it to configure license information, or to change program settings.

To create a new registry key, select the “Registry” option in the left pane. The windows are similar here as they are with files. You can view the source computer’s registry, as well as the destination computer’s registry. You can add keys (folders) and values, as well as change the data on already-present values. The process works exactly as it does for files.

Shortcuts

In the “Shortcuts” option in the left pane, we can modify shortcuts. You can delete them or add them. You will normally have two options here.

The “DesktopFolder” option is exactly what it says. This is the machine desktop folder, so any shortcut listed here will appear for all users on the machine. The “ProgramMenuFolder” option is the all users Start Menu folder. You can add additional folders under “ProgramMenuFolder” as needed to accommodate your shortcuts.

Setup Properties

This is the real meat of an MSI. This is all of the parameters that can be specified for an MSI install. These parameters vary from one MSI to another, as they are specified by the application developer. You can use these to fill in options that would appear as check boxes or text boxes during the application install. The one catch is that you need to know what parameter that text box is tied too (more on this later).

A few general parameters to watch for:

ALLUSERS – When set to “1”, this will install the program for all users. When set to “0”, it will install for the current user.

EULA_ACCEPT – When set to “1”, this will auto-accept the EULA. When set to “0”, it will prompt. EULA_ACCEPT is actually pretty specific in my example. Look for anything that has “EULA” in it. Please ensure that you EULA supports setting this parameter.

PRODUCT_CODE – Normally, this is where you can input a serial number for the software. Other variations of this may be anything starting with SERIAL, ACTIVATION, or PRODUCT.

REBOOT – When set to “1”, it will reboot the computer after install (if needed). When set to “0”, it will not. Other variations may be PROMPT_REBOOT, or anything with REBOOT in its name.

Dialogs

This is where you can view and disable the setup dialogs. This is how you can see the options needed to automate the install. Here is an example using my Adobe Reader MSI.

Here I am viewing the installation sequence. I can see that for Adobe Reader, there will be 3 screens displayed. There are properties (parameters) that can be set if the “Properties” box is enabled. This where we can see what boxes correlate to what parameters under “Setup Properties”. I currently have “SelectARMMode” selected, so if I click Properties, I am shown this box:

I know that I need to set a property to disable this dialog because of the exclamation point. I can click in “Value” box and see what the options for the parameter are, then select the appropriate one. Once I do that, it sets the correct parameter under “Setup Properties”.

This particular parameter only has a few options, so they are actually selectable. A parameter like serial number is not going to be like this. For an option like that, you simply type your serial number in the “Value” box.

Further, you can disable some dialogs and leave others for the user to fill out. If your EULA does not allow you to accept it on behalf of the organization, you can leave this dialog box for the user, while inserting the serial number and disabling its dialog. You disable a dialog by unchecking the box in the “Installation Sequence” box. Here is a screenshot of a disabled “SelectARRMode” box:

Other Uses for Tuner

Everything under the “Setup Properties” pane is also passable through the command line. If I wanted to pass a serial number and that I want the software installed for all users through the command line, I could simply write this command:

msiexec /i install_me.msi SERIAL=1111-1111-1111-1111 ALLUSERS=1 /qb

You can use Tuner to look at the MSI and figure out what these parameters are called. Where these parameters are set is really administrator-preference. You can create an MST, or just pass them through the command line. The real functionality is being able to insert additional files or registry keys, and being able establish what parameters you actually need.

Also, being able to look at the installation dialogs and establishing what text box is setting what parameter is also a valuable tool. Before using Tuner, I would spend hours scouring the Internet trying to find documentation for how to fully automate these MSI installs using parameters. I no longer have to do that because I could open the MSI with Tuner and know exactly what the parameters are called.

Summary

Tuner is a very powerful tool for application administrators. The information that you can gather about an installation for this simple tool is amazing. I encourage anyone who has not looked at it to do so.

Come back next week for an article about how to use InstallShield to look at MSI’s.

Share:

Facebook
Twitter
LinkedIn
Picture of Matt Tinney

Matt Tinney

Professional IT executive & business leader having decades of experience with Microsoft technologies delivering modern-day cloud & security solutions.

Contact Us

=
On Key

More Posts

WME Cybersecurity Briefings No. 020
Cyber Security

WME Security Briefing 26 July 2024

Pro-Houthi Group Targets Yemen Aid Organizations with Android Spyware Overview A suspected pro-Houthi group, OilAlpha, is targeting humanitarian organizations in Yemen with advanced Android spyware. The operation is associated with the activity cluster codenamed OilAlpha. It

Read More »
WME Cybersecurity Briefings No. 019
Cyber Security

WME Security Briefing 23 July 2024

Samba File Shares Targeted by DarkGate Malware in Recent Cyber Offensive Overview Recent investigations by Palo Alto Networks uncover a brief but significant cyberattack campaign utilizing DarkGate malware. This malicious software exploited Samba file shares to

Read More »
WME Cybersecurity Briefings No. 018
Cyber Security

WME Security Briefing 15 July 2024

OVHcloud Mitigates Record-Breaking 840 Million PPS DDoS Attack Overview In April 2024, OVHcloud, a top French cloud computing firm, successfully stopped a massive DDoS attack. The attack hit a record-breaking rate of 840 million packets per second

Read More »
E-Commerce Security - Solutions for Online Retailers
Azure

E-commerce Security – Solutions for Online Retailers

Today’s hyper-charged e-commerce landscape demands top-notch cybersecurity measures. Cybersecurity for this bustling sector isn’t just about ticking a technical box; it’s the cornerstone of building trust. As businesses and consumers flock to the online space, the

Read More »
Be assured of everything

Get WME Services

Stay ahead of the competition with our Professional IT offerings.

=