Hi … I want to send a email with a hotspot button that allow the end-user to execute a msi file to install a programme.
I know how to include the button but I do not know which code I must write.
Is this possible. How ?
Any suggestions would be appreciate.
Subject: Take a look at @Command( [Execute] and Lotusscript Shell command
think of the MSI as an executable file.
Subject: RE: Take a look at @Command( [Execute] and Lotusscript Shell command
Thank you very much.I tried with @Command( [Execute]; “C:\Archivos de programa\Microsoft Office\Office10\EXCEL.EXE” ) and worked fine
BUT
I tried with @Command([Execute];“\MT19040\systray\IntegraSysTray.msi”) and NOT worked.
Any idea ?
Subject: RE: Take a look at @Command( [Execute] and Lotusscript Shell command
I am not sure but it might be that execute @command can not directly access network paths. Try using command prompt in lotusscript to run your file:
Dim shellresult as Variant
shellresult = Shell (”cmd /c start \MT19040\systray\IntegraSysTray.msi”)
Subject: RE: Take a look at @Command( [Execute] and Lotusscript Shell command
That work just FINE !!!Thank you to all of you !!!