Difference between revisions of "Smart Notebook"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: Follow this [http://www2.smarttech.com/st/en-US/Support/Downloads/Admin+tools/AdminToolsNB.htm page] to generate the .mst file. Save it as Notebook Software.mst. Save the "Notebook Softwar...)
 
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 Notebook Software.mst. Save the "Notebook Software.msi" and the "Notebook Software.mst" to your servers software directory under a folder called smartboard and a subfolder called notebook. 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 Notebook Software.mst. Save the "Notebook Software.msi" and the "Notebook Software.mst" to your servers software directory under a folder called smartboard and a subfolder called notebook. 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:31, 30 August 2008

Follow this page to generate the .mst file. Save it as Notebook Software.mst. Save the "Notebook Software.msi" and the "Notebook Software.mst" to your servers software directory under a folder called smartboard and a subfolder called notebook. 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="SmartNotebook" name="Smart Notebook 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\notebook\notebook software.msi" TRANSFORMS="Notebook Software.mst" CUSTOMER_LOGGING=1 /qn">
           <exit code="0" /> 
           <exit code="3010" reboot="true" /> 
        </install>
        <install cmd="msiexec /quiet /i "%SOFTWARE%\smartboard\notebook\Notebook Software.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\notebook\Notebook Software.msi"" /> 
     </package>
  </packages>