How do I install Mediref on Windows?
1. Download the Mediref windows installer from here.
2. Double click on the installer and follow any prompts on screen (usually it is a one click process). Note - You will require admin rights to install the printer.
3. Done. On your desktop, you will find a Mediref application icon. Double click on it to launch the application and sign in to your Mediref account (or create one from the same screen if you do not yet have one).
4.(Optional) Right click on the Mediref application in your taskbar and 'Pin to taskbar'.
You're done. You can now virtually print from any application on your computer to easily send correspondence via Mediref. Like this:
Installing Mediref for IT Admins
If you're an IT administrator and wish to install Mediref across a network silently or via the command line, you can do so by running the same installer from the command line using the /S
flag.
NOTE: Ensure that the terminal instance you run has been launched by right clicking and using the 'Run as administrator' option. We have found that this is usually required, even when the logged in user has an admin role.
Group Policy (Windows)
1. Copy installer to network share
2. Create GPO → Computer Configuration → Software Settings → Software Installation
3. Add package, select "Assigned"
4. Link to target OU
SCCM
Powershell
New-CMApplication -Name "Mediref Desktop" Add-CMDeploymentType -InstallCommand "Mediref-With-Printer-X.X.X.exe /S"
PowerShell Remote
Invoke-Command -ComputerName $computers -ScriptBlock { Start-Process "\\server\Mediref-With-Printer-X.X.X.exe" -ArgumentList "/S" -Wait }