Difference between revisions of "Smartboard Drivers"
From WPKG | Open Source Software Deployment and Distribution
Line 1: | Line 1: | ||
Follow this [http://www2.smarttech.com/st/en-US/Support/Downloads/Admin+tools/AdminToolsNB.htm page] to generate the .mst file. Save it as SMART Board Drivers.mst. Save the "SMART Board Drivers.msi" and the "SMART Board Drivers.mst" to your servers software directory under a folder called smartboard and a subfolder called sbdrivers. Paste in the code and go. Have fun. All this info is found from [http://www2.smarttech.com/kbdoc/123394 here]. | Follow this [http://www2.smarttech.com/st/en-US/Support/Downloads/Admin+tools/AdminToolsNB.htm page] to generate the .mst file. Save it as SMART Board Drivers.mst. Save the "SMART Board Drivers.msi" and the "SMART Board Drivers.mst" to your servers software directory under a folder called smartboard and a subfolder called sbdrivers. Paste in the code and go. Have fun. All this info is found from [http://www2.smarttech.com/kbdoc/123394 here]. | ||
+ | <source lang="xml"> | ||
<?xml version="1.0" encoding="utf-8" ?> | <?xml version="1.0" encoding="utf-8" ?> | ||
<packages> | <packages> | ||
Line 18: | Line 19: | ||
</package> | </package> | ||
</packages> | </packages> | ||
+ | </source> | ||
+ | |||
+ | [[Category:Silent Installers]] |
Revision as of 04:29, 30 August 2008
Follow this page to generate the .mst file. Save it as SMART Board Drivers.mst. Save the "SMART Board Drivers.msi" and the "SMART Board Drivers.mst" to your servers software directory under a folder called smartboard and a subfolder called sbdrivers. Paste in the code and go. Have fun. All this info is found from here.
<?xml version="1.0" encoding="utf-8" ?>
<packages>
<package id="SmartDrivers" name="Smart Board Drivers 10" revision="10" priority="50" reboot="false">
<!-- From XML Import -->
<check type="uninstall" condition="exists" path="Smart Board Software" />
<install cmd="msiexec /i "%SOFTWARE%\smartboard\sbdriver\SMART Board Drivers.msi" TRANSFORMS="SMART Board Drivers.mst" /qn">
<exit code="0" />
<exit code="3010" reboot="true" />
</install>
<install cmd="msiexec /quiet /i "%SOFTWARE%\smartboard\sbdriver\Smart Board Drivers.msi"" />
<remove cmd=""C:\Program Files\Common Files\InstallShield\Driver\9\Intel 32\IDriver.exe" /M{46486451-E60F-42C3-92D7-796D8594688A} /l1033 /r /z-AddRemove -RemoveReg">
<exit code="0" />
<exit code="3010" reboot="true" />
</remove>
<upgrade cmd="msiexec /quiet /i "%SOFTWARE%\smartboard\sbdriver\Smart Board Drivers.msi"" />
</package>
</packages>