Many organizations use Microsoft Intune and Windows Autopilot to streamline and automate provisioning, policy management and Windows updates. Where Liquit Workspace is used to provide a the Digital Workspace with SSO and smart icons for the end users combined with advanced features for Win32 app Release and Patch management.
Me and my colleague Rens Kattenberg have been working with a few partners to help them out deploying the Liquit agent using Windows Autopilot and Microsoft Intune. If you want to learn more about this combination, here’s the link to a recorded webinar called Autopilot, Intune and Liquit Workspace, a great combination by my colleague Nico Zieck.
In this blog we will describe how to create a Windows MSI Line-of-business app in Intune which contains the MSI of the Liquit Workspace agent. We also explain how to replace the default agent.xml with a customized agent.xml, to trigger a ‘Deployment’ to install default applications after the agent has been installed.
- Login into your Liquit Workspace as an administrator
- In the right upper part of your screen, click the user icon and opt for ‘Download Agent’
- This MSI includes a default agent.xml for which we can configure different options which are documented here.
- For this blog we’ve included an Element in the agent.xml which triggers a deployment. Deployments are used to sequence a set of application installations during the imaging process of both virtual and physical devices.
- The Register element is used for registration of the device with Liquit Workspace without requiring an user login. This allows you to manage the device without a user signed in. The user account used to register the agent only requires “Register device” privileges. When using this option, the user doesn’t need the “Register device” privilege, while they can still use the agent when installed with this option
Info
Info
True
True
False
True
0
True
True
False
True
True
True
False
False
True
4
Standard
1
SecretP@ssw0rd
https://yourliquitzone.liquit.com/
Now creating a Windows MSI line-of-business app in Intune only supports single MSI files. You can’t add a transform or a transform with a cab file.

Normally when we want to replace a file in an MSI, using your favorite MSI editor, you create a cab and an mst file for this MSI. It’s best practice not to change the MSI that is. But Intune doesn’t support this for Line-of-business-apps.
So we’ve written a little PowerShell script which replaces the agent.xml in the MSI’s binary table with an agent.xml which has all configuration options like the one I’ve described about a deployment:
#the original liquit agent MSI
$originalAgentMsiFilename = "c:liquitagent-1234567890.msi"
#the xml to be replaced
$agentXmlFilename = "c:liquitagent.xml"
#the updated liquit agent MSI
$updatedAgentMsiFilename = "c:liquitagent.msi"
#create a copy of the original agent MSI
Copy-Item $originalAgentMsiFilename -Destination $updatedAgentMsiFilename -Force
#using this setting ths msi is overwritten
$msiOpenDatabaseModeReadOnly = 2
#start com object for MSI
$windowsInstaller = New-Object -ComObject WindowsInstaller.Installer
#open msi database
$database = $windowsInstaller.GetType().InvokeMember("OpenDatabase", "InvokeMethod", $Null,$windowsInstaller, @($updatedAgentMsiFilename, $msiOpenDatabaseModeReadOnly))
#query for the agent.xml in the table Binary
$query = "UPDATE `Binary` SET Data= ? WHERE Name= 'Agent.xml'"
#start sql update
$View = $database.GetType().InvokeMember("OpenView","InvokeMethod",$Null,$database,($query))
#start to create file stream
$binaryrecord = $windowsInstaller.GetType().InvokeMember("CreateRecord", "InvokeMethod", $null, $windowsInstaller, 1)
#update data with new file binary
$binaryrecord.GetType().InvokeMember("SetStream","InvokeMethod", $null, $binaryrecord, @(1,$agentXmlFilename))
#apply to msi database
$View.GetType().InvokeMember("Execute", "InvokeMethod", $Null, $View, $binaryrecord)
#close msi
$View.GetType().InvokeMember("Close", "InvokeMethod", $Null, $View, $Null)
# release all variables so msi has no lock any more
[System.Runtime.Interopservices.Marshal]::ReleaseComObject($View) | Out-Null
[System.Runtime.Interopservices.Marshal]::ReleaseComObject($binaryrecord) | Out-Null
[System.Runtime.Interopservices.Marshal]::ReleaseComObject($database) | Out-Null
[System.Runtime.Interopservices.Marshal]::ReleaseComObject($windowsInstaller) | Out-Null
Then click ‘Add app’ and select the updated MSI for the package file:





