B4J Question How to launch .msi file with jshell?

miga

Member
Licensed User
Longtime User
Hi,

How can I launch .msi instalation file with jshell?
I trying this:

sh2.Initialize ("sh2", "C:\temp\ArriMetaExtract_3.5.3.3_1801270147_x64.msi", Null)
sh2.RunSynchronous (10000)

with no success.
 

DonManfred

Expert
Licensed User
Longtime User
Try it with
B4X:
fx.ShowExternalDocument(File.GetUri("C:\temp\", "ArriMetaExtract_3.5.3.3_1801270147_x64.msi"))
 
Upvote 0
Top