Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

webupdate VB Script


1 reply to this topic

ravisr

ravisr
  • Members
  • 2 posts

Posted 21 August 2002 - 20:08

Does anyone have a sample webupdate VB Script for InstallShield ?

Appreciate any help.

Thanks
Ravi.

hambone

hambone
  • Members
  • 206 posts

Posted 22 August 2002 - 11:27

this is an example i came across that applies a patch.  i haven't used it but imagine you could replace the .ApplyPatch method with what you want...


<script LANGUAGE="VBScript">
<!--
Dim Installer
On Error Resume Next
set Installer=CreateObject("WindowsInstaller.Installer")
Installer.ApplyPatch "http://server/share/patch.msi", "OriginalPackage.msi",0, "PROPERTY=VALUE "
set Installer=Nothing
-->
</SCRIPT>