Summary
In the Deploying QuickBooks from a Shell App post, I showed how to setup a QuickBooks Shell App.
In this post, we cover how to configure QuickBooks Updates.
NOTE: At the time of writing, there are the following limitations:
- This currently only supports Enterprise and Premier editions of QuickBooks for the last 3 years
- It will ONLY update QuickBooks if it is installed on the session host
If you need to Install QuickBooks, you will utilize the Deploying QuickBooks from a Shell App post
Prerequisites
- Reach out to Flow Devs (clientsupport@flowdevs.io) to get the QuickBooks Update script
-
A ShellApps repository must be created at the MSP Level (Settings>Integrations>Unified Application Management>Add>Shell Apps (repository type)
NOTE: You’re currently limited to one Shell App repository per MSP Tenant.
See UAM Shell Apps for more info
Instructions
- At the MSP level of NMM, expand out Applications and choose Shell Apps
-
Click the Add drop-down and choose Add new
Setup the Update Shell App General Settings
- Select the General tab
- Enter QuickBooks Updater for the Name
- Enter a Description of the ShellApp
i.e. This updates all versions of QuickBooks Enterprise and Premier that are installed on a session host. - Enter FlowDevs.io for the Publisher
-
Toggle Public to be On
Upload the Executable
- Select the File tab
- Toggle Enabled to be set to Yes
- Browse to the File
- Click Start Upload
- Once the file is fully uploaded, you should see Uploading is completed
Setup the Detection Script
- Select the Detection tab
- Choose Script from the Add detection drop-down
- Enter $false in the script
Setup the Install Script
- Select the Install tab
-
Paste in the code below
$ConfigFile = $Context.GetAttachedBinary()
$log = start-process "$($ConfigFile)" -wait -nonewwindow
$Context.Log("$($log)")
Setup the Uninstall Script
- Select the Uninstall tab
- Enter $null in the script
- Click Create
Assign the Shell App to the Account(s)
After you have Created the Shell App, you’re ready to assign it to the necessary account(s).
- Choose Unified Catalog
-
Search for QuickBooks
NOTE: Optionally, you can filter by Shell Apps in the Repository drop-down. -
Choose Assign from the drop-down for the App
- Click Add Assignments
- Choose All or the desired account(s)
- Click Confirm
-
Choose Apply and close
-
Confirm you want to make the assignments when prompted
Schedule the Deployment Policies
After the Shell App is assigned and you’ve created the variables, you’re ready to schedule the deployment of the shell app.
See Deploy Applications for more information on creating the deployment policies.
Comments (0 comments)