Intune

Packaging the Revver MSI for deployment via Intune

Update:

2024-02-27 - I tried this again and realistically, until we package the Revver file differently, I just don't think this is ever going to work.

These are general instructions for installing Revver via Intune. Before proceeding you should have some familiarity with adding a Win32 app to Intune. You will also need to know how to use the Microsoft Win32 Content Prep Tool.

IMPORTANT

This is a general guide for the basic steps. It is likely that file names and locations may change over time. The following steps will need to be done on a Windows computer.

Here are the basic resources you should be familiar with before continuing:

Win32 app management in Microsoft Intune
Prepare Win32 app content for upload
Microsoft Win32 Content Prep Tool

Download the necessary files
Prepare the Revver file using the Content Prep Tool
Add the newly created file to Intune

Alternate Method - Powershell script to download and install 

$fileLocation = "C:\Windows\Temp"
$fileName = "RubexInstaller.exe"
$url = "https://account.revverdocs.net/ClientApplicationInstallers/Windows/RubexInstaller.exe"
$outpath = "$fileLocation/$fileName"
Invoke-WebRequest -Uri $url -OutFile $outpath


"$fileLocation\$fileName"


# Arguments q = quiet h = hide dialog
$args = "/q /h /npf"
Start-Process -Filepath "$fileLocation/$fileName" -ArgumentList $args

Verification

"C:\Program Files (x86)\eFileCabinet, Inc\Rubex\Rubex.exe"