Hi,
I want to know if it's possible to call a vbscript that is in CA from another VBscript CA?
There is my problem:
Script 1:
Class MyClass
Public Sub fonc1()
...
End Sub
...
...
End Class
Script 2:
In my script 2 I want to call the MyClass Class (like i have a file), by this command
ExecuteGlobal ...
Set xx = new MyClass
My script 1 is a very big file and I want that my others scripts use fonctions of that file.
I cannot put script 1 after Install Files sequence, and I don't want to put it outside MSI.
Any ideas ???
Thanks for replies