is there any limitation of characters in VBscript in InstallSheild Custum action
my scripts has 1245 character , it not running in MSI custom action . I have taken log for this msi, only 879 characters of the script i can find in log file, remaining skipped . Do anyone have idea about this?
Answers (3)
Humm, havent used a CA that long before, but it could be the MSI logging just truncating it.
Whack a simple file write at the end of the CA, then check - you find out pretty quick of its log truncating or a char limitation in the CA.
Be very surprised if it was the latter.
Comments:
-
vbs is running manually , but not working when it is implented in msi. - yoganand 6 years ago
The output of most CAs is truncated by the logging function. There's an amazing class file for logging in VBS that's a snap to add to your script(s) so you can output your own log. Google for 'CLogger.vbs'
Comments:
-
actually,truncating is not the issue . My vbs is working manually but it is not working when implemented in msi - yoganand 6 years ago