Difference between revisions of "Telstra Bill Reporting Self Serve (BRSS)"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: [http://www.telstra.com.au/brselfserve Bill Reporting Self Serve (BRSS)] from [http://telstra.com Telstra] appears to be a rebranded version of [http://www.day3.com.au/content/storypic.asp...)
 
m (Use new syntax highlighting plugin for package xml)
Line 7: Line 7:
 
By default, all features of the application are installed (including the trial database).  
 
By default, all features of the application are installed (including the trial database).  
  
<pre>
+
<source lang="xml">
 
<?xml version="1.0" encoding="UTF-8"?>
 
<?xml version="1.0" encoding="UTF-8"?>
  
Line 28: Line 28:
 
   </package>
 
   </package>
 
</packages>
 
</packages>
 
+
</source>
</pre>
+
  
  

Revision as of 22:31, 4 February 2008

Bill Reporting Self Serve (BRSS) from Telstra appears to be a rebranded version of Bill Point Analyser from Day3. As such, the install method described below may be applicable to similar vendor-provided products derived from Bill Point Analyser.

BRSS Client

The BRSS client installer (Telstra brss4-0install.exe) is a basic self-extracting InstallShield-wrapped MSI. Use 7-Zip to access the MSI package (Bill Reporting Self Serve.msi) and data file (Data1.cab). Both these files must be copied to your wpkg software distribution share (i.e. %SOFTWARE%).

By default, all features of the application are installed (including the trial database).

<?xml version="1.0" encoding="UTF-8"?>

<packages>
  <package
    id="brss-client"
    name="Telstra Bill Reporting Self Serve (BRSS) Client"
    revision="0"
    priority="0"
    reboot="false">

  <check type="uninstall" condition="exists" path="Bill Reporting Self Serve" />

  <install cmd='msiexec /qn /i "%SOFTWARE%\brss-client\Bill Reporting Self Serve.msi"'/>

  <upgrade cmd='msiexec /qn /i "%SOFTWARE%\brss-client\Bill Reporting Self Serve.msi"'/>

  <remove cmd='msiexec /qn /x{9967CF29-74F1-401B-89A1-036451CDE961}'/>

  </package>
</packages>