The Desktop Application is provided in an MSI format. Although the Desktop Application is designed to automatically update, we may occasionally request that you update the version you are deploying to control the number of versions in circulation and to ensure that any upgrade time and associated impact to the end-users at the practice is minimised.
The latest app can be downloaded using the link below.
msiexec /Option <Required Parameter> [Optional Parameter]
Install Options
Please see the examples below of how to install and uninstall the application using MSI EXEC and Powershell.
MSIEXEC
Silent Deployment
MSIEXEC /I “Docman 10 Desktop Application Services.msi” /qn
Passive Deployment
MSIEXEC /I “Docman 10 Desktop Application Services.msi” /qr
Silent Uninstall
MSIEXEC /X “Docman 10 Desktop Application Services.msi” /qn
Passive Uninstall
MSIEXEC /X “Docman 10 Desktop Application Services.msi” /qr
Powershell
$path =Read-host “Enter the UNC path including name of the msi file >>>” $list = Read-Host “Enter Path to text file containing list of computers >>>” $computers = get-content $list ForEach ($computer in $computers) {Invoke-Command -ComputerName $computer -ScriptBlock { msiexec /i $path /qn} }