Deploying Questar Secure Browser
Deploying the Questar Student Secure Browser
Download the MSI and place it in a folder within your shared apps folder
Create a Batch File to silently install the Questar software
@ECHO OFF
msiexec /i \\192.168.200.37\apps\questar\QuestarStudent-MS-4.0.4.102-X86.msi /quiet WRAPPED_ARGUMENTS="/S"
exit
If you need to remove the prior version of Questar you can use this batch file to uninstall the old version before installing the new version
@ECHO OFF
c:
cd\
START /WAIT /MIN WMIC product where "Name LIKE '%%Questar%%Secure%%'" call uninstall /nointeractive
msiexec /i \\192.168.200.37\apps\questar\QuestarStudent-MS-4.0.4.102-X86.msi /quiet WRAPPED_ARGUMENTS="/S"
exit
**PLEASE NOTE - Use the IP and shared name and not the logical drive C$ in the path