Last Updated on March 23, 2026
You can use COS to create a deployment file (.zip file) that holds files containing COS Configuration
information for each Testing Device type (see the table).
Important: In the code shown below, DRC INSIGHT uses a restricted proxy host located at http://10.200.2.59:55225 and an Org Unit ID of 1265228949 for the Testing Devices. This code is an example only—depending on various factors, such as your Mobile Device Management (MDM) software—your COS Configuration information could be very different.
File: Desktop.txt
This file contains example commands for silently installing DRC INSIGHT on Windows, Mac, and Linux machines.
Windows
msiexec.exe /i DRC_INSIGHT_SETUP.msi /qn /lv “install.log” HTTPS_PROXY=“http://10.200.2.59:55225” OU_IDS=“1265228949”
Mac OS X
sudo .drc_silent_install -o 1265228949 -x “http://10.200.2.59:55225”
Linux
sudo.sh ./silent_installer.sh -p http://10.2000.2.59:55225 -o “1265228949”
File: Chromeos.json
This file contains COS Configuration information for Chromebook devices.
{“ouIds”:{“Value”:[“1265228949”]}}
File: DRCConfiguration.json
This file contains COS Configuration information for Windows, Mac, and Linux machines. Silent installation information is available in the desktop.txt file.
{
“config”: {
“httpsProxy”: “http://10.200.2.59:55225”
},
“ouIds”: [
“1265228949”
],
“toolkitUrl”: “https://www.drcedirect.com/all/eca-device-toolkit-loader-ui/”
}
File: ios.plist
This file contains a silent installation command for iPad devices.
<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” “http://www.apple.com/DTDs/PropertyList-1.0.dtd”>
<plist version=”1.0″>
<dict>
<key>ouIds</key>
<array>
<string>1265228949</string>
</array>
</dict>
</plist>
